B站SC助手

B站SC助手

在B站看直播全屏时展示SC

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "B站SC助手",
  "version": "0.4.0",
  "description": "在B站看直播全屏时展示SC",
  "action": {
    "default_icon": {
      "16": "./icons/icon-able-16.png",
      "32": "./icons/icon-able-32.png",
      "48": "./icons/icon-able-48.png"
    },
    "default_title": "在B站看直播全屏时展示SC",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://live.bilibili.com/*"
      ],
      "js": [
        "contentScripts.js"
      ],
      "css": [
        "contentScripts.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}