网盘提取助手

网盘提取助手

自动识别网页中网盘链接和提取码,帮你快速自动提取打开下载页面,还支持批量。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.1.0",
  "manifest_version": 2,
  "name": "网盘提取助手",
  "description": "自动识别网页中网盘链接和提取码,帮你快速自动提取打开下载页面,还支持批量。",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/js/browser-polyfill.js",
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "lib/js/browser-polyfill.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "96": "img/icon-96.png",
    "128": "img/icon-128.png"
  },
  "options_ui": {
    "page": "./options.html",
    "open_in_tab": true
  }
}