Clean Twitch Chat

Removes/allows toggling of UI elements around Twitch's chat

Что такое Clean Twitch Chat?

Clean Twitch Chat - это расширение Chrome, разработанное jrn011, и его основная функция - "Removes/allows toggling of UI elements around Twitch's chat".

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

screenshot
screenshot
screenshot

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

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

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

                        Removes UI elements blocking Twitch chat and adds a button that allows you to hide/show the chat message input.

Keyboard shortcuts:
Alt + Up Arrow - slides the chat message input up to become visible

Alt + Down Arrow - slides the chat message input down to become hidden

Ctrl + Up Arrow - slides the chat message input up, and also saves that setting to automatically show the message input when entering a stream

Ctrl + Down Arrow - slides the chat message input down, and also saves that setting to automatically hide the message input when entering a stream

Alt + M - slides the chat message input up if not visible and automatically focuses/activates the message input to allow for immediate typing                    

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

Название Clean Twitch Chat Clean Twitch Chat
ID jgcgjifkgdbpjbcaidbdenogkhbfgepk
Официальный URL https://chromewebstore.google.com/detail/clean-twitch-chat/jgcgjifkgdbpjbcaidbdenogkhbfgepk
Описание Removes/allows toggling of UI elements around Twitch's chat
Размер файла 34 KB
Количество установок 18
Текущая Версия 1.0.7
Последнее Обновление 2021-09-30
Дата публикации 2020-10-09
Рейтинг 5.00/5 Всего 2 оценок
Разработчик jrn011
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clean Twitch Chat",
    "version": "1.0.7",
    "description": "Removes\/allows toggling of UI elements around Twitch's chat",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "css": [
                "styling.css"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ]
}