Screenshot

Screenshot

Screenshot tool for making a full page or partial screen capture with further edit, download or text adding.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "2.3.1",
  "name": "__MSG_extensionName__",
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/browser_action-16.png",
      "32": "icons/browser_action-32.png"
    },
    "default_popup": "popup/page.html",
    "default_title": "__MSG_browserActionTitle__"
  },
  "default_locale": "en_US",
  "icons": {
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png"
  },
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "activeTab",
    "<all_urls>",
    "clipboardWrite",
    "contextMenus",
    "webRequest",
    "webRequestBlocking",
    "downloads",
    "notifications",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "common/style.css"
      ],
      "js": [
        "common/script.js",
        "content/script.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "applications": {
    "gecko": {
      "id": "{905b5cd2-56e0-4eba-9de7-1ab109a2a705}"
    }
  },
  "background": {
    "page": "background/page.html"
  }
}