Quickly Screenshot & Screen Capture

Quickly Screenshot & Screen Capture

Click, highlight, screenshot ready

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Quickly Screenshot & Screen Capture",
  "description": "Click, highlight, screenshot ready",
  "manifest_version": 3,
  "version": "1.0",
  "background": {
    "service_worker": "sw.js"
  },
  "action": {
    "default_icon": "img/32.png"
  },
  "icons": {
    "16": "img/16.png",
    "24": "img/24.png",
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png",
    "256": "img/256.png",
    "512": "img/512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/jquery.Jcrop.min.css",
        "css/content.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/jquery.Jcrop.min.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "resources": [
        "css/content.css",
        "img/Jcrop.gif",
        "img/pixel.png"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}