YouTube Members' Chat Filter

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

Что такое YouTube Members' Chat Filter?

YouTube Members' Chat Filter - это расширение Chrome, разработанное kudohamu, и его основная функция - "Adds a menu to the YouTube chat section where only chats by members are visible.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения YouTube Members' Chat Filter

Скачайте файлы расширений YouTube Members' Chat Filter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название YouTube Members' Chat Filter YouTube Members' Chat Filter
ID dhmbhehcgemcdcjlfmigebgdjjnconhi
Официальный URL https://chromewebstore.google.com/detail/youtube-members-chat-filt/dhmbhehcgemcdcjlfmigebgdjjnconhi
Описание Adds a menu to the YouTube chat section where only chats by members are visible.
Размер файла 11.91 KB
Количество установок 428
Текущая Версия 1.0.0
Последнее Обновление 2021-06-04
Дата публикации 2021-05-16
Рейтинг 5.00/5 Всего 4 оценок
Разработчик kudohamu
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/kudohamu/youtube-members-chat-filter-extension
Поддерживаемые языки 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": [
                ""
            ]
        }
    ]
}