哔哩字幕助手

哔哩字幕助手

哔哩哔哩网站显示字幕,播放时间自动关联对应字幕,方便各种教程视频的高效学习。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "哔哩字幕助手",
  "version": "0.0.2",
  "description": "哔哩哔哩网站显示字幕,播放时间自动关联对应字幕,方便各种教程视频的高效学习。",
  "icons": {
    "128": "imgs/icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "browsingData",
    "tabs",
    "activeTab",
    "scripting",
    "storage",
    "webRequest",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "host_permissions": [
    "*://*.bilibili.com/video/*",
    "*://i0.hdslb.com/bfs/*",
    "*://pay.shazure.com/*",
    "*://*.deta.dev/*"
  ],
  "action": {
    "default_title": "popup",
    "default_icon": "imgs/icon.png",
    "default_popup": "html/popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.bilibili.com/video/*",
        "*://i0.hdslb.com/bfs/*",
        "*://*.deta.dev/*"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/moment.min.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}