YouTube Members' Chat Filter

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

Co to jest YouTube Members' Chat Filter?

YouTube Members' Chat Filter to rozszerzenie Chrome opracowane przez kudohamu, a jego główną funkcją jest „Adds a menu to the YouTube chat section where only chats by members are visible.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Members' Chat Filter

Pobierz pliki rozszerzeń YouTube Members' Chat Filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Members' Chat Filter YouTube Members' Chat Filter
ID dhmbhehcgemcdcjlfmigebgdjjnconhi
Oficjalny URL https://chromewebstore.google.com/detail/youtube-members-chat-filt/dhmbhehcgemcdcjlfmigebgdjjnconhi
Opis Adds a menu to the YouTube chat section where only chats by members are visible.
Rozmiar pliku 11.91 KB
Liczba instalacji 428
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-06-04
Data Publikacji 2021-05-16
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper kudohamu
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/kudohamu/youtube-members-chat-filter-extension
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}