YouTube Chat Room Overlay
Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.
Was ist YouTube Chat Room Overlay?
YouTube Chat Room Overlay ist eine Chrome-Erweiterung, die von CornerSyrup entwickelt wurde, und ihr Hauptmerkmal ist "Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.".
Erweiterungsscreenshots
YouTube Chat Room Overlay-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Chat Room Overlay-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
Live stream is a daily live entertainment. Sending live chat while watching live streaming is an important interaction to whether the community or the stream host. But it is hard to watch stream in full screen mode and sending chat at the meantime. Here comes the simplest solution. Bring the chat room over the stream and make it transparent.
Grundlegende Informationen zur Erweiterung
Name | YouTube Chat Room Overlay |
ID | impmglifagncdmgfjdlcnbdlihgbphbp |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-chat-room-overlay/impmglifagncdmgfjdlcnbdlihgbphbp |
Beschreibung | Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen. |
Dateigröße | 13.72 KB |
Installationsanzahl | 18 |
Aktuelle Version | 0.3.30.6 |
Letztes Update | 2021-08-27 |
Veröffentlichungsdatum | 2021-08-26 |
Entwickler | CornerSyrup |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay |
Hilfeseite URL | https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.3.30.6", "name": "YouTube Chat Room Overlay", "description": "Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.", "icons": { "16": "assets\/image\/icon16.png", "48": "assets\/image\/icon48.png", "128": "assets\/image\/icon128.png" }, "action": { "default_icon": { "16": "assets\/image\/icon16.png", "24": "assets\/image\/icon24.png", "32": "assets\/image\/icon32.png" }, "default_title": "YT Chat Overlay", "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.youtube.com\/watch?v=*" ], "js": [ "overlay.js" ], "css": [ "overlay.css" ] } ], "permissions": [ "storage" ] } |