Flow Chat for YouTube Live

Chrome Extension for Flow Chat Messages on YouTube Live.

Flow Chat for YouTube Liveคืออะไร?

Flow Chat for YouTube Live เป็นส่วนขยายของ Chrome ที่พัฒนาโดย szcepani35 และคุณลักษณะหลักของมันคือ "Chrome Extension for Flow Chat Messages on YouTube Live."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Flow Chat for YouTube Live

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
}