DF Bilibili
create a distraction free environment for people who study on bilibili.com
Was ist DF Bilibili?
DF Bilibili ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "create a distraction free environment for people who study on bilibili.com".
Erweiterungsscreenshots
DF Bilibili-Erweiterungs-CRX-Datei herunterladen
Laden Sie DF Bilibili-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
如果你经常使用bilibili进行学习活动,并且因为B站的推荐内容而分心,那么这个插件可以解决你的问题。安装插件后,所有的bilibili推荐内容会被屏蔽,而其他的功能比如搜索、收藏仍然会被保留。你可以手动切换普通模式与专注模式,还可以添加首页快速访问。 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | picdbajokkdinaboilgbbdcjeeocidek |
| Offizielle URL | https://chromewebstore.google.com/detail/df-bilibili/picdbajokkdinaboilgbbdcjeeocidek |
| Beschreibung | create a distraction free environment for people who study on bilibili.com |
| Dateigröße | 22.04 KB |
| Installationsanzahl | 110 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2020-05-20 |
| Veröffentlichungsdatum | 2020-05-19 |
| Bewertung | 4.33/5 Insgesamt 6 Bewertungen |
| Entwickler | Unknown |
| Zahlungsart | free |
| Unterstützte Sprachen | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "DF Bilibili",
"version": "1.0",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"description": "create a distraction free environment for people who study on bilibili.com",
"content_scripts": [
{
"matches": [
"https:\/\/*.bilibili.com\/*"
],
"js": [
"contentScript.js"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/www.bilibili.com\/*"
],
"exclude_matches": [
"https:\/\/www.bilibili.com\/video\/*"
],
"js": [
"homeContentScript.js"
],
"run_at": "document_end"
}
],
"page_action": {
"default_popup": "popup.html"
},
"permissions": [
"declarativeContent",
"storage",
"tabs"
],
"web_accessible_resources": [
"css\/I-WANNA-FOCUS.css",
"css\/home.css"
]
} | |