Flow Chat for YouTube Live

Chrome Extension for Flow Chat Messages on YouTube Live.

什麼是Flow Chat for YouTube Live?

Flow Chat for YouTube Live是由szcepani35開發的Chrome擴展程式,該擴展的主要功能是“Chrome Extension for Flow Chat Messages on YouTube Live.”。

擴展截圖

screenshot

下載Flow Chat for YouTube Live擴展crx文件

下載Flow Chat for YouTube Live擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Flow Chat for YouTube Live Flow Chat for YouTube Live
ID elfdpkmfllnhhgnicaaeacbilcallpbd
官方網址 https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd
簡介 Chrome Extension for Flow Chat Messages on YouTube Live.
檔案大小 337 KB
安裝次數 62,018
目前版本 0.1.3
更新時間 2023-02-22
上架時間 2022-07-12
評分 4.33/5 共 36 次評分
開發者 szcepani35
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
}