Examine source code of GitHub Release Downloads

Inspect and view changes in GitHub Release Downloads 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": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "1.3.4",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*/*/releases",
        "*://github.com/*/*/releases/tag/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "css": [
        "styles/style.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}