YouTube Entertainment Blocker

Transform YouTube into a healthy, educational platform.

Что такое YouTube Entertainment Blocker?

YouTube Entertainment Blocker - это расширение Chrome, разработанное Thomas Codes, и его основная функция - "Transform YouTube into a healthy, educational platform.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения YouTube Entertainment Blocker

Скачайте файлы расширений YouTube Entertainment Blocker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название YouTube Entertainment Blocker YouTube Entertainment Blocker
ID ejomhdacjcmfbohjlngmipjlcmfimccj
Официальный URL https://chrome.google.com/webstore/detail/youtube-entertainment-blo/ejomhdacjcmfbohjlngmipjlcmfimccj
Описание Transform YouTube into a healthy, educational platform.
Размер файла 16.22 KB
Количество установок 165
Текущая Версия 2.3
Последнее Обновление 2023-07-13
Дата публикации 2022-03-28
Рейтинг 4.86/5 Всего 7 оценок
Разработчик Thomas Codes
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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": [
                ""
            ]
        }
    ]
}