Twitch Chat Danmaku

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

Twitch Chat Danmaku là gì?

Twitch Chat Danmaku là một tiện ích mở rộng Chrome được phát triển bởi wheatup, và tính năng chính của nó là "Display the chat as danmaku(chat overlay) with fully customizable settings, compatible with emoticons!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitch Chat Danmaku

Tải xuống các tệp mở rộng Twitch Chat Danmaku dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitch Chat Danmaku Twitch Chat Danmaku
ID koiphfkghjgmncbkcpfnegnbcbomlchg
URL Chính Thức https://chromewebstore.google.com/detail/twitch-chat-danmaku/koiphfkghjgmncbkcpfnegnbcbomlchg
Mô tả Display the chat as danmaku(chat overlay) with fully customizable settings, compatible with emoticons!
Kích Thước Tệp 34.09 KB
Số Lần Cài Đặt 67,432
Phiên Bản Hiện Tại 2.1.1
Cập Nhật Lần Cuối 2023-11-16
Ngày Phát Hành 2020-04-14
Đánh Giá 4.48/5 Tổng số 82 Đánh Giá
Nhà Phát Triển wheatup
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/wheatup/TwitchChatDanmaku
Ngôn Ngữ Được Hỗ Trợ 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"
}