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によって開発されたChromeの拡張機能で、その主な機能は「Overlay chat room in YouTube when video is playing in Normal mode, Cinema mode or Full screen.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

YouTube Chat Room Overlay拡張機能のCRXファイルをダウンロード

YouTube Chat Room Overlay拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}