Twitch Chat Overlay
Overlay the Twitch chat when in fullscreen mode.
Wat is Twitch Chat Overlay?
Twitch Chat Overlay is een Chrome-extensie ontwikkeld door trmcnvn, en de belangrijkste functie is "Overlay the Twitch chat when in fullscreen mode.".
Extensie Screenshots
Download het CRX-bestand van de extensie Twitch Chat Overlay
Download Twitch Chat Overlay-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Twitch Chat Overlay |
ID | lcljofkmbcdnjekeamikmefcjohmhgng |
Officiële URL | https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng |
Beschrijving | Overlay the Twitch chat when in fullscreen mode. |
Bestandsgrootte | 25.92 KB |
Aantal Installaties | 3,615 |
Huidige Versie | 1.10 |
Laatst Bijgewerkt | 2020-01-21 |
Publicatiedatum | 2020-01-14 |
Beoordeling | 3.70/5 Totaal 10 Beoordelingen |
Ontwikkelaar | trmcnvn |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/trmcnvn/twitch-chat-overlay |
Help Pagina-URL | https://github.com/trmcnvn/twitch-chat-overlay/issues |
Ondersteunde Talen | 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" } ] } |