Webpage Screenshot for Edge

Webpage Screenshot for Edge

An easy tool for taking screenshots (full screen / visible part / selected by yourself)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Webpage Screenshot for Edge",
  "description": "An easy tool for taking screenshots (full screen / visible part / selected by yourself)",
  "version": "45.1.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"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "screenshot.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "capture.html",
        "capture.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "offline_enabled": true,
  "permissions": [
    "storage",
    "scripting",
    "notifications",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}