Twitch Theatre Mode For Oled

Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.

¿Qué es Twitch Theatre Mode For Oled?

Twitch Theatre Mode For Oled es una extensión de Chrome desarrollada por linkthai1995, y su función principal es "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Twitch Theatre Mode For Oled

Descarga archivos de extensión Twitch Theatre Mode For Oled 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

                        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                    

Información Básica de la Extensión

Nombre Twitch Theatre Mode For Oled Twitch Theatre Mode For Oled
ID cbgkdiclimhcgdmidmdmnpfdiflnegpl
URL Oficial https://chromewebstore.google.com/detail/twitch-theatre-mode-for-o/cbgkdiclimhcgdmidmdmnpfdiflnegpl
Descripción Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.
Tamaño del Archivo 10.21 KB
Cantidad de Instalaciones 345
Versión Actual 1.1
Última Actualización 2023-06-19
Fecha de Publicación 2022-12-26
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador linkthai1995
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}