YouTube Members' Chat Filter

Adds a menu to the YouTube chat section where only chats by members are visible.

Co je YouTube Members' Chat Filter?

YouTube Members' Chat Filter je rozšíření Chrome vyvinuté kudohamu, a jeho hlavní funkcí je „Adds a menu to the YouTube chat section where only chats by members are visible.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření YouTube Members' Chat Filter

Stáhněte si soubory rozšíření YouTube Members' Chat Filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Add a menu to the YouTube chat section to show only members' chats.

Many of the users who troll or chat unpleasantly on YouTube are users who are not fans of the streamer enough to become members.
This extension will help keep your mental health clean by allowing you to see only members' chats.                    

Základní Informace o Rozšíření

Název YouTube Members' Chat Filter YouTube Members' Chat Filter
ID dhmbhehcgemcdcjlfmigebgdjjnconhi
Oficiální URL https://chromewebstore.google.com/detail/youtube-members-chat-filt/dhmbhehcgemcdcjlfmigebgdjjnconhi
Popis Adds a menu to the YouTube chat section where only chats by members are visible.
Velikost souboru 11.91 KB
Počet instalací 428
Aktuální Verze 1.0.0
Poslední Aktualizace 2021-06-04
Datum Vydání 2021-05-16
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář kudohamu
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/kudohamu/youtube-members-chat-filter-extension
Podporované Jazyky en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Members' Chat Filter",
    "version": "1.0.0",
    "description": "__MSG_ext_desc__",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/live_chat?*",
                "https:\/\/www.youtube.com\/live_chat_replay?*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "resources\/icon.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}