Twitch Chat Overlay
Overlay the Twitch chat when in fullscreen mode.
Qu'est-ce que Twitch Chat Overlay ?
Twitch Chat Overlay est une extension Chrome développée par trmcnvn, et sa fonction principale est "Overlay the Twitch chat when in fullscreen mode.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitch Chat Overlay
Téléchargez les fichiers d'extension Twitch Chat Overlay 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
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!
Informations de Base sur l'Extension
Nom | Twitch Chat Overlay |
ID | lcljofkmbcdnjekeamikmefcjohmhgng |
URL Officiel | https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng |
Description | Overlay the Twitch chat when in fullscreen mode. |
Taille du Fichier | 25.92 KB |
Nombre d'Installations | 3,615 |
Version Actuelle | 1.10 |
Dernière Mise à Jour | 2020-01-21 |
Date de Publication | 2020-01-14 |
Évaluation | 3.70/5 Total 10 Évaluations |
Développeur | trmcnvn |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/trmcnvn/twitch-chat-overlay |
URL de la Page d'Aide | https://github.com/trmcnvn/twitch-chat-overlay/issues |
Langues Prises en Charge | 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" } ] } |