全品-音视频下载

最好用的音视频下载插件,可下载所有网站的音频和视频,如微博、知乎、抖音、网易音乐、qq音乐等等!支持批量下载!
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,
  "version": "1.0.0",
  "name": "全品-音视频下载",
  "description": "最好用的音视频下载插件,可下载所有网站的音频和视频,如微博、知乎、抖音、网易音乐、qq音乐等等!支持批量下载!",
  "browser_action": {
    "default_icon": "image/128.png"
  },
  "icons": {
    "16": "image/16.png",
    "48": "image/48.png",
    "128": "image/128.png"
  },
  "permissions": [
    "webRequest",
    "storage",
    "downloads",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*://v.qq.com/",
        "*://youku.com/",
        "*://tudou.com/",
        "*://iqiyi.com/",
        "*://le.com/",
        "*://mgtv.com/"
      ],
      "js": [
        "js/jquery.min.1.8.js",
        "js/common.js",
        "js/getVideo.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/jquery.min.1.8.js",
      "js/common.js",
      "js/subData.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://apis.google.com 'unsafe-eval'; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}