Twitch Chat Header Cleaner
Get rid of chat header. (Ctrl + Q to switch)
¿Qué es Twitch Chat Header Cleaner?
Twitch Chat Header Cleaner es una extensión de Chrome desarrollada por 뽀르삐리, y su función principal es "Get rid of chat header. (Ctrl + Q to switch)".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Twitch Chat Header Cleaner
Descarga archivos de extensión Twitch Chat Header Cleaner en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Twitch Chat Header Cleaner |
ID | ejmlhjmoagijdalknicbnmbljhpipbme |
URL Oficial | https://chromewebstore.google.com/detail/twitch-chat-header-cleane/ejmlhjmoagijdalknicbnmbljhpipbme |
Descripción | Get rid of chat header. (Ctrl + Q to switch) |
Tamaño del Archivo | 11.22 KB |
Cantidad de Instalaciones | 141 |
Versión Actual | 2.4 |
Última Actualización | 2023-09-08 |
Fecha de Publicación | 2022-02-07 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | 뽀르삐리 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/" ] } |