Twitch Chat Danmaku

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

Twitch Chat Danmakuคืออะไร?

Twitch Chat Danmaku เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wheatup และคุณลักษณะหลักของมันคือ "Display the chat as danmaku(chat overlay) with fully customizable settings, compatible with emoticons!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Chat Danmaku

ดาวน์โหลดไฟล์ส่วนขยาย Twitch Chat Danmaku ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}