Twitch Chat Danmaku
Display the chat as danmaku(chat overlay) with fully customizable settings, compatible with emoticons!
Twitch Chat Danmaku क्या है?
Twitch Chat Danmaku wheatup द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display the chat as danmaku(chat overlay) with fully customizable settings, compatible with emoticons!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Chat Danmaku एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } |