Chat Danmaku
Show chat room messages as danmaku when watching live streams.
Chat Danmakuとは何ですか?
Chat Danmakuはkevinpttによって開発されたChromeの拡張機能で、その主な機能は「Show chat room messages as danmaku when watching live streams.」です。
拡張機能のスクリーンショット
Chat Danmaku拡張機能のCRXファイルをダウンロード
Chat Danmaku拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Show chat room messages as danmaku when watching live streams.
Support sites:
- Twitch
- Garena Live
Note: We don't guarantee that it always works correctly and perfectly. If you encounter any problems or bugs, try to refresh page first. 拡張機能の基本情報
| 名前 | |
| ID | mgahhhpmjdpnieacpcmjfegnoehameap |
| 公式URL | https://chromewebstore.google.com/detail/chat-danmaku/mgahhhpmjdpnieacpcmjfegnoehameap |
| 説明 | Show chat room messages as danmaku when watching live streams. |
| ファイルサイズ | 62.84 KB |
| インストール数 | 19 |
| 現在のバージョン | 1.3.0 |
| 最終更新日 | 2018-09-30 |
| 公開日 | 2018-09-30 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | kevinptt |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/kevinptt0323/chat-danmaku |
| ヘルプページのURL | https://github.com/kevinptt0323/chat-danmaku/issues |
| 対応言語 | en,zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "1.3.0",
"homepage_url": "https:\/\/github.com\/kevinptt0323\/chat-danmaku",
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"browser_action": {
"default_popup": "options\/index.html"
},
"default_locale": "en",
"options_ui": {
"page": "options\/index.html",
"open_in_tab": false
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/garena.live\/*",
"*:\/\/www.twitch.tv\/*"
],
"js": [
"index.js"
],
"css": [
"index.css"
]
}
]
} | |