Inspect and view changes in bilibili-comment-ext 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": "bilibili-comment-ext",
"version": "0.0.2",
"description": "帮助用户快速ç›é€‰å¹¶ä½¿ç”¨è¯„论模æ¿è¿›è¡Œè¯„论,让喜爱的upè¿…é€Ÿçœ¼ç†ŸäºŽä½ ",
"action": {
"default_icon": "./assets/bilibili-comment-96.png",
"default_popup": "./dist/popup/index.html"
},
"options_ui": {
"page": "./dist/options/index.html",
"open_in_tab": true
},
"background": {
"service_worker": "./dist/background/index.mjs"
},
"icons": {
"16": "./assets/bilibili-comment-96.png",
"48": "./assets/bilibili-comment-96.png",
"128": "./assets/bilibili-comment-96.png"
},
"permissions": [
"tabs",
"storage",
"activeTab"
],
"homepage_url": "https://github.com/SilverComet7/bilibili-comment",
"host_permissions": [
"*://*/*"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"./dist/contentScripts/index.global.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"dist/contentScripts/style.css"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}