Flow Chat for YouTube Live

Chrome Extension for Flow Chat Messages on YouTube Live.

O que é Flow Chat for YouTube Live?

Flow Chat for YouTube Live é uma extensão do Chrome desenvolvida por szcepani35, e sua principal característica é "Chrome Extension for Flow Chat Messages on YouTube Live.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Flow Chat for YouTube Live

Baixe arquivos de extensão Flow Chat for YouTube Live no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Flow Chat for YouTube Live Flow Chat for YouTube Live
ID elfdpkmfllnhhgnicaaeacbilcallpbd
URL Oficial https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd
Descrição Chrome Extension for Flow Chat Messages on YouTube Live.
Tamanho do Arquivo 337 KB
Contagem de Instalações 62,018
Versão Atual 0.1.3
Última Atualização 2023-02-22
Data de Publicação 2022-07-12
Classificação 4.33/5 Total de 36 Avaliações
Desenvolvedor szcepani35
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
}