YouTube Entertainment Blocker

Transform YouTube into a healthy, educational platform.

Co to jest YouTube Entertainment Blocker?

YouTube Entertainment Blocker to rozszerzenie Chrome opracowane przez Thomas Codes, a jego główną funkcją jest „Transform YouTube into a healthy, educational platform.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia YouTube Entertainment Blocker

Pobierz pliki rozszerzeń YouTube Entertainment Blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Entertainment Blocker YouTube Entertainment Blocker
ID ejomhdacjcmfbohjlngmipjlcmfimccj
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-entertainment-blo/ejomhdacjcmfbohjlngmipjlcmfimccj
Opis Transform YouTube into a healthy, educational platform.
Rozmiar pliku 16.22 KB
Liczba instalacji 165
Aktualna Wersja 2.3
Ostatnia Aktualizacja 2023-07-13
Data Publikacji 2022-03-28
Ocena 4.86/5 Łącznie 7 Oceny
Deweloper Thomas Codes
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}