Flow Chat for YouTube Live
Chrome Extension for Flow Chat Messages on YouTube Live.
Co je Flow Chat for YouTube Live?
Flow Chat for YouTube Live je rozšíření Chrome vyvinuté szcepani35, a jeho hlavní funkcí je „Chrome Extension for Flow Chat Messages on YouTube Live.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Flow Chat for YouTube Live
Stáhněte si soubory rozšíření Flow Chat for YouTube Live ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
- 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.
Základní Informace o Rozšíření
Název | Flow Chat for YouTube Live |
ID | elfdpkmfllnhhgnicaaeacbilcallpbd |
Oficiální URL | https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd |
Popis | Chrome Extension for Flow Chat Messages on YouTube Live. |
Velikost souboru | 337 KB |
Počet instalací | 62,018 |
Aktuální Verze | 0.1.3 |
Poslední Aktualizace | 2023-02-22 |
Datum Vydání | 2022-07-12 |
Hodnocení | 4.33/5 Celkem 36 Hodnocení |
Vývojář | szcepani35 |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } |