Examine source code of Screen Capture - A Review and Feedback Tool

Inspect and view changes in Screen Capture - A Review and Feedback Tool source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Screen Capture - A Review and Feedback Tool",
  "description": "Extension to aid the process of reviews and audits",
  "version": "3.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"
}