百度网盘批量改名

百度网盘批量改名

百度网盘批量改名

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "百度网盘批量改名",
  "description": "百度网盘批量改名",
  "version": "2.2.2",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon_16.png",
    "default_title": "百度网盘批量改名",
    "default_popup___": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "activeTab",
    "notifications",
    "webRequest",
    "storage",
    "cookies",
    "http://pan.baidu.com/disk/home*",
    "https://pan.baidu.com/disk/home*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://pan.baidu.com/disk/home*"
      ],
      "exclude_matches": [],
      "js": [
        "content/content.js",
        "jquery-3.5.1.min.js"
      ],
      "css": [
        "content/contentFix.css"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "options/options.html",
  "web_accessible_resources": [
    "baidu-pan-tools-helper.js",
    "jquery-3.5.1.min.js",
    "content/contentFix.css",
    "content/content.css"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "homepage_url": "https://www.yuque.com/tuboshu-yqd5u/ktil5c/vgo988"
}