Twitch Theatre Mode For Oled

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

O que é Twitch Theatre Mode For Oled?

Twitch Theatre Mode For Oled é uma extensão do Chrome desenvolvida por linkthai1995, e sua principal característica é "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch Theatre Mode For Oled

Baixe arquivos de extensão Twitch Theatre Mode For Oled no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome 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
Descrição Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.
Tamanho do Arquivo 10.21 KB
Contagem de Instalações 345
Versão Atual 1.1
Última Atualização 2023-06-19
Data de Publicação 2022-12-26
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor linkthai1995
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}