YouTube Chat Room Overlay

Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.

Qu'est-ce que YouTube Chat Room Overlay ?

YouTube Chat Room Overlay est une extension Chrome développée par CornerSyrup, et sa fonction principale est "Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension YouTube Chat Room Overlay

Téléchargez les fichiers d'extension YouTube Chat Room 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

                        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.                    

Informations de Base sur l'Extension

Nom YouTube Chat Room Overlay YouTube Chat Room Overlay
ID impmglifagncdmgfjdlcnbdlihgbphbp
URL Officiel https://chromewebstore.google.com/detail/youtube-chat-room-overlay/impmglifagncdmgfjdlcnbdlihgbphbp
Description Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.
Taille du Fichier 13.72 KB
Nombre d'Installations 18
Version Actuelle 0.3.30.6
Dernière Mise à Jour 2021-08-27
Date de Publication 2021-08-26
Développeur CornerSyrup
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay
URL de la Page d'Aide https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay/issues
Langues Prises en Charge 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"
    ]
}