全品-音视频下载

全品-音视频下载

音视频下载助手,支持多网站智能检测下载,支持批量下载,会自动检测音频或视频。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.2",
  "name": "全品-音视频下载",
  "description": "音视频下载助手,支持多网站智能检测下载,支持批量下载,会自动检测音频或视频。",
  "action": {
    "default_icon": {
      "32": "image/128.png"
    }
  },
  "icons": {
    "16": "image/16.png",
    "48": "image/48.png",
    "128": "image/128.png"
  },
  "permissions": [
    "webRequest",
    "storage",
    "downloads",
    "system.display"
  ],
  "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": {
    "service_worker": "js/background.js",
    "type": "module",
    "matches": [
      "<all_urls>"
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self' ;"
  }
}