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
官方網址 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"
    ]
}