BiliMini

BiliMini

工具栏添加一个按钮,用于提示并快速查看Bilibili更新等信息

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_desc__",
  "version": "2.3.8",
  "default_locale": "zh_CN",
  "permissions": [
    "declarativeNetRequest",
    "alarms",
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "*://*.bilibili.com/",
    "*://api.vc.bilibili.com/",
    "*://api.live.bilibili.com/"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "biliapi",
        "enabled": true,
        "path": "rules_biliapi.json"
      }
    ]
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "BiliMini",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+B"
      }
    }
  }
}