YouTube Entertainment Blocker

Transform YouTube into a healthy, educational platform.

Co je YouTube Entertainment Blocker?

YouTube Entertainment Blocker je rozšíření Chrome vyvinuté Thomas Codes, a jeho hlavní funkcí je „Transform YouTube into a healthy, educational platform.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření YouTube Entertainment Blocker

Stáhněte si soubory rozšíření YouTube Entertainment Blocker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Completely transform YouTube into a more productive, more healthy platform.

This extension filters your YouTube feed by checking the categories of the videos on your feed, and keeping only the videos that are under the "useful" categories (Education, Science & Technology, HowTo & Style). If the user attempts to open a video that is not under the previous categories, the user will be redirected backwards.

It also blocks YouTube Shorts, the mini-player and the explore page.                    

Základní Informace o Rozšíření

Název YouTube Entertainment Blocker YouTube Entertainment Blocker
ID ejomhdacjcmfbohjlngmipjlcmfimccj
Oficiální URL https://chrome.google.com/webstore/detail/youtube-entertainment-blo/ejomhdacjcmfbohjlngmipjlcmfimccj
Popis Transform YouTube into a healthy, educational platform.
Velikost souboru 16.22 KB
Počet instalací 165
Aktuální Verze 2.3
Poslední Aktualizace 2023-07-13
Datum Vydání 2022-03-28
Hodnocení 4.86/5 Celkem 7 Hodnocení
Vývojář Thomas Codes
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Entertainment Blocker",
    "description": "Transform YouTube into a healthy, educational platform.",
    "permissions": [
        "notifications"
    ],
    "version": "2.3",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "video_layout.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}