Dark Theme for Twitch™

A highly customizable native dark theme for twitch.tv (platform for gamers)

Что такое Dark Theme for Twitch™?

Dark Theme for Twitch™ - это расширение Chrome, разработанное balvin.perrie, и его основная функция - "A highly customizable native dark theme for twitch.tv (platform for gamers)".

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

screenshot

Скачать файл CRX расширения Dark Theme for Twitch™

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

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

                        This is a native dark theme for twitch.tv gaming platform which uses the built-in dark theme for toggling the dark mode on and off. This extension works even if you are not logged in. Also, the user can insert a set of custom CSS rules to enhance the default theme. This extension does not run a persistent background script and only adds a few lines of code to each twitch page to be able to toggle the theme on and off.

Notes: 
1. To add your own CSS rules visit the options page
2. To disable the dark theme, simply click once on the toolbar button. You can enable the dark theme anytime later by pressing the button once more
3. If you already have opened twitch.tv tabs after installation, you need to refresh them for the theme to get applied.                    

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

Название Dark Theme for Twitch™ Dark Theme for Twitch™
ID ghmkhegmedggpnghojodmkkflpokmlab
Официальный URL https://chromewebstore.google.com/detail/dark-theme-for-twitch/ghmkhegmedggpnghojodmkkflpokmlab
Описание A highly customizable native dark theme for twitch.tv (platform for gamers)
Размер файла 48.13 KB
Количество установок 1,933
Текущая Версия 0.1.0
Последнее Обновление 2019-05-07
Дата публикации 2019-05-07
Рейтинг 5.00/5 Всего 2 оценок
Разработчик balvin.perrie
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://add0n.com/dark-theme.html?from=twitch
URL страницы помощи https://add0n.com/dark-theme.html?from=twitch
URL страницы политики конфиденциальности https://add0n.com/policies/balvin.perrie.txt
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.1.0",
    "name": "Dark Theme for Twitch\u2122",
    "description": "__MSG_app_description__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "alarms",
        "idle"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitch.tv\/",
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "data\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "data\/theme.css"
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "19": "data\/icons\/19.png",
        "32": "data\/icons\/32.png",
        "38": "data\/icons\/38.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "homepage_url": "https:\/\/add0n.com\/dark-theme.html?from=twitch",
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/16.png",
            "19": "data\/icons\/19.png",
            "32": "data\/icons\/32.png",
            "38": "data\/icons\/38.png",
            "64": "data\/icons\/64.png"
        }
    }
}