Youtube Hider

This is a Chrome extension to hide videos and images on YouTube.

Что такое Youtube Hider?

Youtube Hider - это расширение Chrome, разработанное Miri Ahn, и его основная функция - "This is a Chrome extension to hide videos and images on YouTube.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Youtube Hider

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

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

                        You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo

Update 1.1 (2019/11/25) 
- Added a button to enable or disable all checkboxes.                    

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

Название Youtube Hider Youtube Hider
ID cnaimccmiafebfliaiefkdfmdffgmjph
Официальный URL https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph
Описание This is a Chrome extension to hide videos and images on YouTube.
Размер файла 8.85 KB
Количество установок 60
Текущая Версия 1.1
Последнее Обновление 2019-11-29
Дата публикации 2019-11-29
Рейтинг 4.25/5 Всего 4 оценок
Разработчик Miri Ahn
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/kameru/youtube-hider/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Hider",
    "version": "1.1",
    "description": "This is a Chrome extension to hide videos and images on YouTube.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "hidingController.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "hide_thumb.css",
        "hide_video.css",
        "hide_icon.css",
        "popup.js",
        "hidingController.js"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "page_action": {
        "default_icon": "images\/hide.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}