Screenshot Master: Full Page Screenshot

Screenshot Master: Full Page Screenshot

Easy, free and full-featured screenshot app to capture, edit and save your screenshots effortlessly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "1.4.0",
  "icons": {
    "256": "logo.png"
  },
  "action": {
    "default_icon": {
      "38": "logo.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "capture.html",
        "capture.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "offline_enabled": true,
  "permissions": [
    "storage",
    "scripting",
    "notifications",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}