TinySnap (Production-ready Screenshot Tool)

TinySnap (Production-ready Screenshot Tool)

Production-ready screenshots made simple for creators, developers and marketers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appTitle__",
  "version": "1.4.3",
  "description": "__MSG_appDescription__",
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "./dist/background/index.mjs"
    ]
  },
  "icons": {
    "16": "./assets/icon-512.png",
    "48": "./assets/icon-512.png",
    "128": "./assets/icon-512.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "downloads",
    "cookies",
    "scripting",
    "clipboardWrite",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./dist/contentScripts/index.global.js"
      ],
      "run_at": "document_start"
    }
  ],
  "commands": {
    "selectedArea": {
      "suggested_key": {
        "default": "Alt+Shift+S",
        "mac": "Alt+Shift+S"
      },
      "description": "Capture Selected Area"
    },
    "viewport": {
      "suggested_key": {
        "default": "Alt+Shift+V",
        "mac": "Alt+Shift+V"
      },
      "description": "Capture Viewport"
    },
    "fullPage": {
      "suggested_key": {
        "default": "Alt+Shift+P",
        "mac": "Alt+Shift+P"
      },
      "description": "Capture Full Page"
    }
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en",
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "./assets/icon-512.png",
      "32": "./assets/icon-512.png"
    },
    "default_popup": "./dist/popup/index.html"
  },
  "web_accessible_resources": [
    "dist/contentScripts/style.css"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{5e416cbf-ebfe-4e16-9f68-cce00ad78bcf}"
    }
  }
}