Twitch Theatre Mode For Oled
Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.
Что такое Twitch Theatre Mode For Oled?
Twitch Theatre Mode For Oled - это расширение Chrome, разработанное linkthai1995, и его основная функция - "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.".
Снимки экрана расширения
Скачать файл CRX расширения Twitch Theatre Mode For Oled
Скачайте файлы расширений Twitch Theatre Mode For Oled в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
For OLED screen users, automatically hide static elements and flip chat when watching Twitch Theatre mode. If you want to support me, buy me a Coffee: https://www.buymeacoffee.com/linkthai
Основная информация о расширении
Название | Twitch Theatre Mode For Oled |
ID | cbgkdiclimhcgdmidmdmnpfdiflnegpl |
Официальный URL | https://chromewebstore.google.com/detail/twitch-theatre-mode-for-o/cbgkdiclimhcgdmidmdmnpfdiflnegpl |
Описание | Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat. |
Размер файла | 10.21 KB |
Количество установок | 345 |
Текущая Версия | 1.1 |
Последнее Обновление | 2023-06-19 |
Дата публикации | 2022-12-26 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | linkthai1995 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch Theatre Mode For Oled", "description": "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.", "version": "1.1", "action": { "default_popup": "popup.html", "default_icon": "twitch_oled.png" }, "icons": { "16": "twitch_oled.png", "32": "twitch_oled.png", "48": "twitch_oled.png", "128": "twitch_oled.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "main.js" ], "exclude_globs": [ "https:\/\/www.twitch.tv\/directory\/*", "https:\/\/www.twitch.tv\/p\/*", "https:\/\/www.twitch.tv\/products\/*", "https:\/\/www.twitch.tv\/*\/manager*", "https:\/\/www.twitch.tv\/*\/dashboard", "https:\/\/www.twitch.tv\/broadcast", "https:\/\/www.twitch.tv\/messages\/*", "https:\/\/www.twitch.tv\/settings" ], "run_at": "document_end" } ] } |