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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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\/*"
    ]
}