DF Bilibili

create a distraction free environment for people who study on bilibili.com

Wat is DF Bilibili?

DF Bilibili is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "create a distraction free environment for people who study on bilibili.com".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie DF Bilibili

Download DF Bilibili-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        如果你经常使用bilibili进行学习活动,并且因为B站的推荐内容而分心,那么这个插件可以解决你的问题。安装插件后,所有的bilibili推荐内容会被屏蔽,而其他的功能比如搜索、收藏仍然会被保留。你可以手动切换普通模式与专注模式,还可以添加首页快速访问。                    

Basisinformatie over de Extensie

Naam DF Bilibili DF Bilibili
ID picdbajokkdinaboilgbbdcjeeocidek
Officiële URL https://chromewebstore.google.com/detail/df-bilibili/picdbajokkdinaboilgbbdcjeeocidek
Beschrijving create a distraction free environment for people who study on bilibili.com
Bestandsgrootte 22.04 KB
Aantal Installaties 110
Huidige Versie 1.0
Laatst Bijgewerkt 2020-05-20
Publicatiedatum 2020-05-19
Beoordeling 4.33/5 Totaal 6 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    ]
}