Flow Chat for YouTube Live

Chrome Extension for Flow Chat Messages on YouTube Live.

Hvad er Flow Chat for YouTube Live?

Flow Chat for YouTube Live er en Chrome-udvidelse udviklet af szcepani35, og dens hovedfunktion er "Chrome Extension for Flow Chat Messages on YouTube Live.".

Udvidelsesskærmbilleder

screenshot

Download Flow Chat for YouTube Live-udvidelses-CRX-fil

Download Flow Chat for YouTube Live-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        - 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.                    

Grundlæggende oplysninger om udvidelsen

Navn Flow Chat for YouTube Live Flow Chat for YouTube Live
ID elfdpkmfllnhhgnicaaeacbilcallpbd
Officiel URL https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd
Beskrivelse Chrome Extension for Flow Chat Messages on YouTube Live.
Filstørrelse 337 KB
Antal Installationer 62,018
Nuværende Version 0.1.3
Senest Opdateret 2023-02-22
Udgivelsesdato 2022-07-12
Bedømmelse 4.33/5 Samlet 36 Bedømmelser
Udvikler szcepani35
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
}