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"
}