Bilibili-Helper

Bilibili-Helper

提供一些实用的 逛B站 的小工具

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "zh_CN",
  "version": "2.0",
  "manifest_version": 2,
  "permissions": [
    "declarativeContent",
    "activeTab",
    "tabs",
    "storage",
    "http://127.0.0.1:8000/*",
    "http://bili.wansho.top/*"
  ],
  "background": {
    "scripts": [
      "static/js/jquery-2.0.3.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "static/images/16.png",
      "32": "static/images/32.png",
      "48": "static/images/48.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.bilibili.com/video/av*",
        "https://www.bilibili.com/video/BV*"
      ],
      "js": [
        "static/js/jquery-2.0.3.min.js",
        "static/js/echarts.min.js",
        "contentscript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "static/images/16.png",
    "32": "static/images/32.png",
    "48": "static/images/48.png"
  }
}