Web Screenshot

Web Screenshot

Takes Web and Desktop screenshots with a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "default_locale": "en",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Web Screenshot",
    "default_icon": "icon32.png"
  },
  "commands": {
    "visible_screenshot": {
      "suggested_key": {
        "default": "Alt+Shift+V"
      },
      "description": "Visible Screenshot"
    },
    "desktop_screenshot": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      },
      "description": "Desktop Screenshot"
    }
  },
  "permissions": [
    "scripting",
    "activeTab",
    "tabs",
    "storage",
    "downloads",
    "desktopCapture",
    "notifications"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}