Flow Chat for YouTube Live
Chrome Extension for Flow Chat Messages on YouTube Live.
Qu'est-ce que Flow Chat for YouTube Live ?
Flow Chat for YouTube Live est une extension Chrome développée par szcepani35, et sa fonction principale est "Chrome Extension for Flow Chat Messages on YouTube Live.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Flow Chat for YouTube Live
Téléchargez les fichiers d'extension Flow Chat for YouTube Live au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
- 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.
Informations de Base sur l'Extension
Nom | Flow Chat for YouTube Live |
ID | elfdpkmfllnhhgnicaaeacbilcallpbd |
URL Officiel | https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd |
Description | Chrome Extension for Flow Chat Messages on YouTube Live. |
Taille du Fichier | 337 KB |
Nombre d'Installations | 62,018 |
Version Actuelle | 0.1.3 |
Dernière Mise à Jour | 2023-02-22 |
Date de Publication | 2022-07-12 |
Évaluation | 4.33/5 Total 36 Évaluations |
Développeur | szcepani35 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } |