Examine source code of CRX Downloader

Inspect and view changes in CRX Downloader 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_extensionName__",
  "version": "1.3.2",
  "manifest_version": 2,
  "description": "__MSG_extensionDescription__",
  "author": "waahah",
  "homepage_url": "https://waahah.xyz/about",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "default_locale": "zh_CN",
  "browser_specific_settings": {
    "gecko": {
      "id": "addon@CrxDownloader.firefox",
      "strict_min_version": "79.0"
    }
  },
  "devtools_page": "background.html",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.microsoft.com/*",
        "*://chrome.google.com/webstore/detail/*",
        "*://chromewebstore.google.com/*"
      ],
      "all_frames": true,
      "run_at": "document_idle",
      "js": [
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "downloads"
  ],
  "content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "icons/128x128.png",
    "default_title": "CRX下载器,Chrome/Edge插件下载,可下载微软和谷歌扩展商店插件",
    "default_popup": ""
  }
}