Examine source code of QQ音樂下載助手

Inspect and view changes in QQ音樂下載助手 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
{
  "manifest_version": 2,
  "name": "QQ音樂下載助手",
  "version": "0.0.3",
  "description": "在QQ音樂的網頁上可以直接免費下載歌曲。",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "QQ音樂下載助手",
    "default_popup": "options.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://y.qq.com; object-src 'self'",
  "permissions": [
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://y.qq.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}