Live Chat Overlay

Restyle the YouTube and Castr.io popout chat so you can overlay it for livestreams

什麼是Live Chat Overlay?

Live Chat Overlay是由mwftech2021開發的Chrome擴展程式,該擴展的主要功能是“Restyle the YouTube and Castr.io popout chat so you can overlay it for livestreams”。

擴展截圖

screenshot

下載Live Chat Overlay擴展crx文件

下載Live Chat Overlay擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension allows you to highlight chat messages from YouTube and the Castr.io unified chat messaging windows so they can be displayed as an overlay on your livestream.

The Castr.io unified app currently works with YouTube, Twitch and Facebook*.


* Due to a permissions issue the names are not displayed properly from Facebook. There are settings to replace Anonymous users with a replacement string.                    

擴展基本資訊

名稱 Live Chat Overlay Live Chat Overlay
ID jpoihkknbjjfhbancpejlbejefpghmnc
官方網址 https://chromewebstore.google.com/detail/live-chat-overlay/jpoihkknbjjfhbancpejlbejefpghmnc
簡介 Restyle the YouTube and Castr.io popout chat so you can overlay it for livestreams
檔案大小 411 KB
安裝次數 457
目前版本 0.1.4
更新時間 2021-03-17
上架時間 2021-03-16
開發者 mwftech2021
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/br8kpoint/live-chat-overlay
說明頁面URL https://github.com/br8kpoint/live-chat-overlay/issues
隱私政策頁面URL https://mwftech.ca/privacy-policy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Live Chat Overlay",
    "description": "Restyle the YouTube and Castr.io popout chat so you can overlay it for livestreams",
    "manifest_version": 2,
    "version": "0.1.4",
    "homepage_url": "https:\/\/github.com\/br8kpoint\/Live-Chat-Overlay",
    "icons": {
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "https:\/\/youtube.com\/*",
        "https:\/\/www.youtube.com\/*",
        "https:\/\/studio.youtube.com\/*",
        "https:\/\/chat.castr.io\/room*",
        "storage"
    ],
    "content_scripts": [
        {
            "css": [
                "youtube.css",
                "lib\/featherlight\/featherlight.min.css"
            ],
            "js": [
                "jquery.js",
                "youtube.js",
                "lib\/featherlight\/featherlight.min.js"
            ],
            "matches": [
                "https:\/\/youtube.com\/live_chat*",
                "https:\/\/www.youtube.com\/live_chat*",
                "https:\/\/studio.youtube.com\/live_chat*",
                "https:\/\/chat.castr.io\/room*"
            ]
        }
    ],
    "options_ui": {
        "page": "settings\/options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        "settings\/*",
        "lib\/*"
    ]
}