YouTube Members' Chat Filter

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

Wat is YouTube Members' Chat Filter?

YouTube Members' Chat Filter is een Chrome-extensie ontwikkeld door kudohamu, en de belangrijkste functie is "Adds a menu to the YouTube chat section where only chats by members are visible.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube Members' Chat Filter

Download YouTube Members' Chat Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam YouTube Members' Chat Filter YouTube Members' Chat Filter
ID dhmbhehcgemcdcjlfmigebgdjjnconhi
Officiële URL https://chromewebstore.google.com/detail/youtube-members-chat-filt/dhmbhehcgemcdcjlfmigebgdjjnconhi
Beschrijving Adds a menu to the YouTube chat section where only chats by members are visible.
Bestandsgrootte 11.91 KB
Aantal Installaties 428
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-06-04
Publicatiedatum 2021-05-16
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar kudohamu
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/kudohamu/youtube-members-chat-filter-extension
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}