YouTube Chat Room Overlay

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

YouTube Chat Room Overlay क्या है?

YouTube Chat Room Overlay CornerSyrup द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Chat Room Overlay एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Chat Room Overlay YouTube Chat Room Overlay
ID impmglifagncdmgfjdlcnbdlihgbphbp
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-chat-room-overlay/impmglifagncdmgfjdlcnbdlihgbphbp
विवरण Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.
फ़ाइल का आकार 13.72 KB
स्थापना संख्या 18
वर्तमान संस्करण 0.3.30.6
अंतिम अपडेट 2021-08-27
प्रकाशन तिथि 2021-08-26
डेवलपर CornerSyrup
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay
सहायता पृष्ठ URL https://github.com/CornerSyrup/YouTube-ChatRoom-Overlay/issues
समर्थित भाषाएँ 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"
    ]
}