Twitch Chat Header Cleaner
Get rid of chat header. (Ctrl + Q to switch)
Co to jest Twitch Chat Header Cleaner?
Twitch Chat Header Cleaner to rozszerzenie Chrome opracowane przez 뽀르삐리, a jego główną funkcją jest „Get rid of chat header. (Ctrl + Q to switch)”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Twitch Chat Header Cleaner
Pobierz pliki rozszerzeń Twitch Chat Header Cleaner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Automatically removes everything on the chat header. *Caution* Point betting is also hidden by default. You can turn on/off with Ctrl + Q shortcut or extension icon click. https://github.com/porpyry/twitch-header-cleaner
Podstawowe informacje o rozszerzeniu
Nazwa | Twitch Chat Header Cleaner |
ID | ejmlhjmoagijdalknicbnmbljhpipbme |
Oficjalny URL | https://chromewebstore.google.com/detail/twitch-chat-header-cleane/ejmlhjmoagijdalknicbnmbljhpipbme |
Opis | Get rid of chat header. (Ctrl + Q to switch) |
Rozmiar pliku | 11.22 KB |
Liczba instalacji | 141 |
Aktualna Wersja | 2.4 |
Ostatnia Aktualizacja | 2023-09-08 |
Data Publikacji | 2022-02-07 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | 뽀르삐리 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "version": "2.4", "action": [], "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "128": "\/icon\/twitch_icon_128.png" }, "background": { "service_worker": "background.js" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Q", "windows": "Ctrl+Q", "mac": "Command+Q", "linux": "Ctrl+Q" } } }, "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "content-script.js" ], "css": [ "content-style.css" ] } ], "host_permissions": [ "https:\/\/www.twitch.tv\/" ] } |