DF Bilibili
create a distraction free environment for people who study on bilibili.com
What is DF Bilibili?
DF Bilibili is a Chrome extension developed by Unknown, and its main feature is "create a distraction free environment for people who study on bilibili.com".
Extension Screenshots
Download DF Bilibili Extension CRX File
Download DF Bilibili extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
如果你经常使用bilibili进行学习活动,并且因为B站的推荐内容而分心,那么这个插件可以解决你的问题。安装插件后,所有的bilibili推荐内容会被屏蔽,而其他的功能比如搜索、收藏仍然会被保留。你可以手动切换普通模式与专注模式,还可以添加首页快速访问。
Extension Basic Information
Name | DF Bilibili |
ID | picdbajokkdinaboilgbbdcjeeocidek |
Official URL | https://chromewebstore.google.com/detail/df-bilibili/picdbajokkdinaboilgbbdcjeeocidek |
Description | create a distraction free environment for people who study on bilibili.com |
File Size | 22.04 KB |
Installation Count | 110 |
Current Version | 1.0 |
Last Updated | 2020-05-20 |
Publish Date | 2020-05-19 |
Rating | 4.33/5 Total 6 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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" ] } |