Flow Chat for YouTube Live
Chrome Extension for Flow Chat Messages on YouTube Live.
Flow Chat for YouTube Liveとは何ですか?
Flow Chat for YouTube Liveはszcepani35によって開発されたChromeの拡張機能で、その主な機能は「Chrome Extension for Flow Chat Messages on YouTube Live.」です。
拡張機能のスクリーンショット
Flow Chat for YouTube Live拡張機能のCRXファイルをダウンロード
Flow Chat for YouTube Live拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
- Flow messages over the video. - Change color, size and speed for messages. - Show author and avatar on messages. - Show super chats and super stickers. - Filter banned words. - Add helper menu buttons on the chat list.
拡張機能の基本情報
名前 | Flow Chat for YouTube Live |
ID | elfdpkmfllnhhgnicaaeacbilcallpbd |
公式URL | https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd |
説明 | Chrome Extension for Flow Chat Messages on YouTube Live. |
ファイルサイズ | 337 KB |
インストール数 | 62,018 |
現在のバージョン | 0.1.3 |
最終更新日 | 2023-02-22 |
公開日 | 2022-07-12 |
評価 | 4.33/5 合計 36 レビュー |
開発者 | szcepani35 |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "css": [ "content-script.css" ] }, { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/live_chat*" ], "all_frames": true, "js": [ "content-script-iframe.js" ], "css": [ "content-script-iframe.css" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Flow Chat for YouTube Live", "description": "Chrome Extension for Flow Chat Messages on YouTube Live.", "version": "0.1.3" } |