Screen Capture - A Review and Feedback Tool

Screen Capture - A Review and Feedback Tool

Extension to aid the process of reviews and audits

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Screen Capture - A Review and Feedback Tool",
  "description": "Extension to aid the process of reviews and audits",
  "version": "2.0.0",
  "manifest_version": 3,
  "action": {},
  "icons": {
    "16": "/images/maqRaft16.png",
    "32": "/images/maqRaft32.png",
    "48": "/images/maqRaft48.png",
    "128": "/images/maqRaft128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/panX.js",
        "js/maqRaft.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "templates/panelContent.html",
        "templates/settings.html"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "scripting",
    "tabs"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}