Youtube Darkmode

Enable Youtube's new Material UI theme

Что такое Youtube Darkmode?

Youtube Darkmode - это расширение Chrome, разработанное Jack Hanford, и его основная функция - "Enable Youtube's new Material UI theme".

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

screenshot

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

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

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

                        Enable Youtube's new Material Design mode, which also enables Youtube's Darkmode feature. This chrome extension puts users in the A/B test for the new Youtube UI

Github: https://github.com/hanford/youtube-darkmode                    

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

Название Youtube Darkmode Youtube Darkmode
ID ajngaombckgmodafdnmipfmcfgppnnhp
Официальный URL https://chrome.google.com/webstore/detail/youtube-darkmode/ajngaombckgmodafdnmipfmcfgppnnhp
Описание Enable Youtube's new Material UI theme
Размер файла 8.11 KB
Количество установок 570
Текущая Версия 0.0.1
Последнее Обновление 2017-05-17
Дата публикации 2017-05-17
Рейтинг 2.00/5 Всего 4 оценок
Разработчик Jack Hanford
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Darkmode",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Enable Youtube's new Material UI theme",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "*:\/\/youtube.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "cookie-setter.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}