Screenshot Extension

Screenshot Extension

Take a screenshot of the current page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Screenshot Extension",
  "version": "1.0",
  "description": "Take a screenshot of the current page.",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "48": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png"
    }
  },
  "permissions": [
    "downloads",
    "activeTab"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}