Twitch Chat Overlay
Overlay the Twitch chat when in fullscreen mode.
Cos'è Twitch Chat Overlay?
Twitch Chat Overlay è un'estensione di Chrome sviluppata da trmcnvn, e la sua funzione principale è "Overlay the Twitch chat when in fullscreen mode.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitch Chat Overlay
Scarica i file di estensione Twitch Chat Overlay 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
Twitch Chat Overlay will allow you to view and interact with the chat while watching a stream in fullscreen. You can move, resize, and toggle the chat window while in full-screen and these settings are remembered the next time you watch!
Informazioni di Base sull'Estensione
Nome | Twitch Chat Overlay |
ID | lcljofkmbcdnjekeamikmefcjohmhgng |
URL Ufficiale | https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng |
Descrizione | Overlay the Twitch chat when in fullscreen mode. |
Dimensione del File | 25.92 KB |
Conteggio Installazioni | 3,615 |
Versione Corrente | 1.10 |
Ultimo Aggiornamento | 2020-01-21 |
Data di Pubblicazione | 2020-01-14 |
Valutazione | 3.70/5 Totale 10 Valutazioni |
Sviluppatore | trmcnvn |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/trmcnvn/twitch-chat-overlay |
URL della Pagina di Aiuto | https://github.com/trmcnvn/twitch-chat-overlay/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Chat Overlay", "description": "Overlay the Twitch chat when in fullscreen mode.", "version": "1.10", "homepage_url": "https:\/\/github.com\/trmcnvn\/twitch-chat-overlay", "icons": { "16": "resources\/icon-16.jpg", "48": "resources\/icon-48.jpg", "96": "resources\/icon-96.jpg", "128": "resources\/icon-128.jpg" }, "web_accessible_resources": [ "overlay.js" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "main.js" ], "css": [ "style.css" ], "run_at": "document_idle" } ] } |