Twitch Chat Overlay

Overlay the Twitch chat when in fullscreen mode.

Twitch Chat Overlay란 무엇입니까?

Twitch Chat Overlay은(는) trmcnvn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Overlay the Twitch chat when in fullscreen mode."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twitch Chat Overlay 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Twitch Chat Overlay will allow you to view and interact with the chat while watching a stream in fullscreen.

You can move, resize, and toggle the chat window while in full-screen and these settings are remembered the next time you watch!                    

확장 프로그램 기본 정보

이름 Twitch Chat Overlay Twitch Chat Overlay
ID lcljofkmbcdnjekeamikmefcjohmhgng
공식 URL https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng
설명 Overlay the Twitch chat when in fullscreen mode.
파일 크기 25.92 KB
설치 횟수 3,615
현재 버전 1.10
최근 업데이트 2020-01-21
출시 날짜 2020-01-14
평점 3.70/5 총 10 개의 평점
개발자 trmcnvn
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/trmcnvn/twitch-chat-overlay
도움말 페이지 URL https://github.com/trmcnvn/twitch-chat-overlay/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Chat Overlay",
    "description": "Overlay the Twitch chat when in fullscreen mode.",
    "version": "1.10",
    "homepage_url": "https:\/\/github.com\/trmcnvn\/twitch-chat-overlay",
    "icons": {
        "16": "resources\/icon-16.jpg",
        "48": "resources\/icon-48.jpg",
        "96": "resources\/icon-96.jpg",
        "128": "resources\/icon-128.jpg"
    },
    "web_accessible_resources": [
        "overlay.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ]
}