YouTube Rabbit Hole Sealant

Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.

Что такое YouTube Rabbit Hole Sealant?

YouTube Rabbit Hole Sealant - это расширение Chrome, разработанное ezeYaniv, и его основная функция - "Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.".

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

screenshot

Скачать файл CRX расширения YouTube Rabbit Hole Sealant

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

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

                        This Chrome extension hides some of YouTube's most attention-grabbing, time-wasting components: the 'suggested videos' sidebar and the comment section.

Clicking the extension icon allows you to quickly toggle the following options:
  •  Show or hide the 'suggested videos' sidebar
  •  Show or hide the comment section                    

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

Название YouTube Rabbit Hole Sealant YouTube Rabbit Hole Sealant
ID pljkdepedlaeibebpmkckpefajpjkcak
Официальный URL https://chromewebstore.google.com/detail/youtube-rabbit-hole-seala/pljkdepedlaeibebpmkckpefajpjkcak
Описание Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.
Размер файла 27.64 KB
Количество установок 87
Текущая Версия 1.0
Последнее Обновление 2021-08-21
Дата публикации 2021-08-21
Рейтинг 5.00/5 Всего 1 оценок
Разработчик ezeYaniv
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Rabbit Hole Sealant",
    "description": "Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/images\/RabbitHoleSealantLogo_Rect_16.png",
        "24": "assets\/images\/RabbitHoleSealantLogo_Rect_24.png",
        "32": "assets\/images\/RabbitHoleSealantLogo_Rect_32.png",
        "48": "assets\/images\/RabbitHoleSealantLogo_Rect_48.png",
        "128": "assets\/images\/RabbitHoleSealantLogo_Rect_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "assets\/js\/hideComponents.js"
            ]
        }
    ],
    "action": {
        "default_title": "Rabbit Hole Sealant: make YouTube less addicting",
        "default_icon": {
            "16": "assets\/images\/RabbitHoleSealantLogo_Rect_16.png",
            "24": "assets\/images\/RabbitHoleSealantLogo_Rect_24.png",
            "32": "assets\/images\/RabbitHoleSealantLogo_Rect_32.png",
            "48": "assets\/images\/RabbitHoleSealantLogo_Rect_48.png",
            "128": "assets\/images\/RabbitHoleSealantLogo_Rect_128.png"
        },
        "default_popup": "assets\/popup\/popup.html"
    },
    "permissions": [
        "storage"
    ]
}