YouTube Members' Chat Filter

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

Cos'è YouTube Members' Chat Filter?

YouTube Members' Chat Filter è un'estensione di Chrome sviluppata da kudohamu, e la sua funzione principale è "Adds a menu to the YouTube chat section where only chats by members are visible.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Members' Chat Filter

Scarica i file di estensione YouTube Members' Chat Filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome YouTube Members' Chat Filter YouTube Members' Chat Filter
ID dhmbhehcgemcdcjlfmigebgdjjnconhi
URL Ufficiale https://chromewebstore.google.com/detail/youtube-members-chat-filt/dhmbhehcgemcdcjlfmigebgdjjnconhi
Descrizione Adds a menu to the YouTube chat section where only chats by members are visible.
Dimensione del File 11.91 KB
Conteggio Installazioni 428
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-06-04
Data di Pubblicazione 2021-05-16
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore kudohamu
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kudohamu/youtube-members-chat-filter-extension
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}