追剧助手

追剧助手

拿来追剧岂不快哉(支持腾讯视频、爱奇艺、bilibili)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "johns shuxian ([email protected])",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "128": "ext_icons/icon_128_1.png"
    },
    "default_popup": "config.html",
    "default_title": "追剧助手"
  },
  "content_scripts": [
    {
      "js": [
        "theme/chrome/js/jquery.js",
        "theme/chrome/js/content_script.js"
      ],
      "matches": [
        "https://v.qq.com/*",
        "https://www.bilibili.com/*",
        "https://www.iqiyi.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "拿来追剧岂不快哉(支持腾讯视频、爱奇艺、bilibili)",
  "icons": {
    "128": "ext_icons/icon_128_1.png"
  },
  "manifest_version": 2,
  "name": "追剧助手",
  "options_page": "config.html",
  "permissions": [
    "contextMenus",
    "storage",
    "notifications",
    "alarms"
  ],
  "version": "1.0.3",
  "web_accessible_resources": [
    "*"
  ]
}