Twitch Theatre Mode For Oled

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

Qu'est-ce que Twitch Theatre Mode For Oled ?

Twitch Theatre Mode For Oled est une extension Chrome développée par linkthai1995, et sa fonction principale est "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitch Theatre Mode For Oled

Téléchargez les fichiers d'extension Twitch Theatre Mode For Oled au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Twitch Theatre Mode For Oled Twitch Theatre Mode For Oled
ID cbgkdiclimhcgdmidmdmnpfdiflnegpl
URL Officiel https://chromewebstore.google.com/detail/twitch-theatre-mode-for-o/cbgkdiclimhcgdmidmdmnpfdiflnegpl
Description Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.
Taille du Fichier 10.21 KB
Nombre d'Installations 345
Version Actuelle 1.1
Dernière Mise à Jour 2023-06-19
Date de Publication 2022-12-26
Évaluation 5.00/5 Total 4 Évaluations
Développeur linkthai1995
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}