Flow Chat for YouTube Live

Chrome Extension for Flow Chat Messages on YouTube Live.

Flow Chat for YouTube Live là gì?

Flow Chat for YouTube Live là một tiện ích mở rộng Chrome được phát triển bởi szcepani35, và tính năng chính của nó là "Chrome Extension for Flow Chat Messages on YouTube Live.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Flow Chat for YouTube Live

Tải xuống các tệp mở rộng Flow Chat for YouTube Live dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Flow Chat for YouTube Live Flow Chat for YouTube Live
ID elfdpkmfllnhhgnicaaeacbilcallpbd
URL Chính Thức https://chromewebstore.google.com/detail/flow-chat-for-youtube-liv/elfdpkmfllnhhgnicaaeacbilcallpbd
Mô tả Chrome Extension for Flow Chat Messages on YouTube Live.
Kích Thước Tệp 337 KB
Số Lần Cài Đặt 62,018
Phiên Bản Hiện Tại 0.1.3
Cập Nhật Lần Cuối 2023-02-22
Ngày Phát Hành 2022-07-12
Đánh Giá 4.33/5 Tổng số 36 Đánh Giá
Nhà Phát Triển szcepani35
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}