Tinker for Twitch

Control visual elements of Twitch.tv

Что такое Tinker for Twitch?

Tinker for Twitch - это расширение Chrome, разработанное matou.io, и его основная функция - "Control visual elements of Twitch.tv".

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

screenshot
screenshot

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

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

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

                        Give yourself more control over what is displayed on Twitch. Tinker allows you to toggle visual elements of Twitch so you can get rid of distracting or unwanted elements.

Tinker allows you to hide elements such as:
- Recommended channels
- Twitch prime elements
- Notifications
- Private messages

Tinker is still an active development so any feedback or issues can be reported here: https://github.com/matoululu/Tinker/issues                    

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

Название Tinker for Twitch Tinker for Twitch
ID aelphekojmlpcdoohblacpihddffflke
Официальный URL https://chromewebstore.google.com/detail/tinker-for-twitch/aelphekojmlpcdoohblacpihddffflke
Описание Control visual elements of Twitch.tv
Размер файла 22.43 KB
Количество установок 36
Текущая Версия 2.5.4
Последнее Обновление 2020-03-23
Дата публикации 2020-03-23
Рейтинг 5.00/5 Всего 2 оценок
Разработчик matou.io
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/matoululu/Tinker
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tinker for Twitch",
    "short_name": "Tinker",
    "version": "2.5.4",
    "description": "Control visual elements of Twitch.tv",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "css": [
                "override.css"
            ],
            "js": [
                "chromestorageservice.js",
                "override.js"
            ],
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "options.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}