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 Extension for Flow Chat Messages on YouTube Live."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Flow Chat for YouTube Live एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        - 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"
}