Twitch Chat Danmaku

Display the chat as danmaku(chat overlay) with fully customizable settings, compatible with emoticons!

Twitch Chat Danmaku란 무엇입니까?

Twitch Chat Danmaku은(는) wheatup에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display the chat as danmaku(chat overlay) with fully customizable settings, compatible with emoticons!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This is a chrome extension that brings danmaku(niconico style chat overlay) feature to twitch.tv, with fully customizable settings.

You can watch twitch chat directly on the stream without having to glance at the chat window, even possible in full screen mode.

This extension supports all kinds of emoticons; you won't miss any detail of any chat!

Have fun!                    

확장 프로그램 기본 정보

이름 Twitch Chat Danmaku Twitch Chat Danmaku
ID koiphfkghjgmncbkcpfnegnbcbomlchg
공식 URL https://chromewebstore.google.com/detail/twitch-chat-danmaku/koiphfkghjgmncbkcpfnegnbcbomlchg
설명 Display the chat as danmaku(chat overlay) with fully customizable settings, compatible with emoticons!
파일 크기 34.09 KB
설치 횟수 67,432
현재 버전 2.1.1
최근 업데이트 2023-11-16
출시 날짜 2020-04-14
평점 4.48/5 총 82 개의 평점
개발자 wheatup
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wheatup/TwitchChatDanmaku
지원되는 언어 de,en,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "2.1.1",
    "description": "__MSG_appDescription__",
    "background": {
        "service_worker": "src\/js\/background\/background.js",
        "type": "module"
    },
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "fontSettings",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "content_scripts": [
        {
            "css": [
                "src\/css\/app.css"
            ],
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "src\/js\/app\/danmaku\/default.js",
                "src\/js\/app\/danmaku\/scroll.js",
                "src\/js\/app\/app.js"
            ]
        }
    ],
    "action": {
        "default_title": "__MSG_appName__",
        "default_icon": {
            "16": "icons\/icon-16.png",
            "48": "icons\/icon-48.png",
            "64": "icons\/icon-64.png",
            "128": "icons\/icon-128.png"
        },
        "default_popup": "popup.html"
    },
    "default_locale": "en"
}