Flow Chat for YouTube Live
Chrome Extension for Flow Chat Messages on YouTube Live.
Wat is Flow Chat for YouTube Live?
Flow Chat for YouTube Live is een Chrome-extensie ontwikkeld door szcepani35, en de belangrijkste functie is "Chrome Extension for Flow Chat Messages on YouTube Live.".
Extensie Screenshots
Download het CRX-bestand van de extensie Flow Chat for YouTube Live
Download Flow Chat for YouTube Live-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
- 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. Basisinformatie over de Extensie
| Naam | |
| ID | elfdpkmfllnhhgnicaaeacbilcallpbd |
| Officiële URL | https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd |
| Beschrijving | Chrome Extension for Flow Chat Messages on YouTube Live. |
| Bestandsgrootte | 337 KB |
| Aantal Installaties | 62,018 |
| Huidige Versie | 0.1.3 |
| Laatst Bijgewerkt | 2023-02-22 |
| Publicatiedatum | 2022-07-12 |
| Beoordeling | 4.33/5 Totaal 36 Beoordelingen |
| Ontwikkelaar | szcepani35 |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
} | |