云盘助手

云盘助手

您的云盘智能助手

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "云盘助手",
  "description": "您的云盘智能助手",
  "version": "0.0.2",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_popup": "popup.html",
    "default_title": "云盘助手"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "homepage_url": "https://yunpanzhushou.com/?chrome-ext",
  "icons": {
    "19": "img/icon_19.png",
    "38": "img/icon_38.png",
    "128": "img/icon_48.png"
  },
  "permissions": [
    "tabs",
    "http://localhost/*",
    "https://yunpanzhushou.com/*",
    "https://pan.baidu.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://pan.baidu.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ]
}