Twitch Theatre Mode For Oled
Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.
Cos'è Twitch Theatre Mode For Oled?
Twitch Theatre Mode For Oled è un'estensione di Chrome sviluppata da linkthai1995, e la sua funzione principale è "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Theatre Mode For Oled
Scarica i file di estensione Twitch Theatre Mode For Oled in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Twitch Theatre Mode For Oled |
ID | cbgkdiclimhcgdmidmdmnpfdiflnegpl |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-theatre-mode-for-o/cbgkdiclimhcgdmidmdmnpfdiflnegpl |
Descrizione | Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat. |
Dimensione del File | 10.21 KB |
Conteggio Installazioni | 345 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2023-06-19 |
Data di Pubblicazione | 2022-12-26 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | linkthai1995 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |