Distraction Free YouTube

YouTube with less distraction!

Что такое Distraction Free YouTube?

Distraction Free YouTube - это расширение Chrome, разработанное developer.4af2c, и его основная функция - "YouTube with less distraction!".

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

screenshot
screenshot
screenshot

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

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

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

                        This extension blocks the home page, explore page, side bar, end screen video tile, and YouTube Shorts.

the project is open source: https://github.com/dwssv/distraction-free-youtube                    

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

Название Distraction Free YouTube Distraction Free YouTube
ID cjfomfbgjppmmipmjdfpcjlilpjbahli
Официальный URL https://chromewebstore.google.com/detail/distraction-free-youtube/cjfomfbgjppmmipmjdfpcjlilpjbahli
Описание YouTube with less distraction!
Размер файла 484 KB
Количество установок 31
Текущая Версия 1.0.2
Последнее Обновление 2022-05-14
Дата публикации 2022-03-27
Рейтинг 5.00/5 Всего 2 оценок
Разработчик developer.4af2c
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Distraction Free YouTube",
    "description": "YouTube with less distraction!",
    "version": "1.0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "declarativeNetRequest"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}