Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Minimal Bilibili",
"description": "Make Bilibili more minimalistic",
"version": "1.5.2",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"options_ui": {
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.bilibili.com\/",
"https:\/\/www.bilibili.com\/?*"
],
"css": [
"css\/content_style.css"
],
"js": [
"js\/content_script.js"
]
},
{
"matches": [
"https:\/\/www.bilibili.com\/video\/*"
],
"css": [
"css\/video_content_style.css"
],
"js": [
"js\/video_content_script.js"
]
}
],
"permissions": [
"storage",
"tabs"
]
}