Examine source code of 哔哩字幕助手

Inspect and view changes in 哔哩字幕助手 source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
}