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!”。
擴展截圖
下載Twitch Chat Danmaku擴展crx文件
下載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 |
ID | koiphfkghjgmncbkcpfnegnbcbomlchg |
官方網址 | 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" } |