Twitch Theatre Mode For Oled
Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.
Was ist Twitch Theatre Mode For Oled?
Twitch Theatre Mode For Oled ist eine Chrome-Erweiterung, die von linkthai1995 entwickelt wurde, und ihr Hauptmerkmal ist "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.".
Erweiterungsscreenshots
Twitch Theatre Mode For Oled-Erweiterungs-CRX-Datei herunterladen
Laden Sie Twitch Theatre Mode For Oled-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Twitch Theatre Mode For Oled |
ID | cbgkdiclimhcgdmidmdmnpfdiflnegpl |
Offizielle URL | https://chromewebstore.google.com/detail/twitch-theatre-mode-for-o/cbgkdiclimhcgdmidmdmnpfdiflnegpl |
Beschreibung | Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat. |
Dateigröße | 10.21 KB |
Installationsanzahl | 345 |
Aktuelle Version | 1.1 |
Letztes Update | 2023-06-19 |
Veröffentlichungsdatum | 2022-12-26 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | linkthai1995 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |