Examine source code of 视频下载神器

Inspect and view changes in 视频下载神器 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
{
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "description": "网页视频下载神器,网页媒体嗅探工具,在线视频下载。支持优酷、腾讯视频、爱奇艺等主流网站",
  "icons": {
    "40": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "minimum_chrome_version": "30",
  "name": "视频下载神器",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "*://*/*",
    "<all_urls>",
    "downloads",
    "declarativeContent",
    "storage",
    "tabs",
    "*://*/*",
    "contextMenus",
    "downloads",
    "storage",
    "unlimitedStorage",
    "storage",
    "http://*/*",
    "tabs",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "sessions",
    "webNavigation",
    "activeTab",
    "browsingData",
    "*://*/*",
    "unlimitedStorage",
    "https://*/*",
    "contextMenus",
    "<all_urls>"
  ],
  "version": "20.2.19",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}