Flow Chat for YouTube Live
Chrome Extension for Flow Chat Messages on YouTube Live.
Cos'è Flow Chat for YouTube Live?
Flow Chat for YouTube Live è un'estensione di Chrome sviluppata da szcepani35, e la sua funzione principale è "Chrome Extension for Flow Chat Messages on YouTube Live.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Flow Chat for YouTube Live
Scarica i file di estensione Flow Chat for YouTube Live in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
- 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.
Informazioni di Base sull'Estensione
Nome | Flow Chat for YouTube Live |
ID | elfdpkmfllnhhgnicaaeacbilcallpbd |
URL Ufficiale | https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd |
Descrizione | Chrome Extension for Flow Chat Messages on YouTube Live. |
Dimensione del File | 337 KB |
Conteggio Installazioni | 62,018 |
Versione Corrente | 0.1.3 |
Ultimo Aggiornamento | 2023-02-22 |
Data di Pubblicazione | 2022-07-12 |
Valutazione | 4.33/5 Totale 36 Valutazioni |
Sviluppatore | szcepani35 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } |