Chat Filter for YouTube Live

Chrome Extension for Filtering Chat Messages on YouTube Live.

Что такое Chat Filter for YouTube Live?

Chat Filter for YouTube Live - это расширение Chrome, разработанное https://fiahfy.blogspot.com, и его основная функция - "Chrome Extension for Filtering Chat Messages on YouTube Live.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        - Filter chat messages by text or regular expression.
- Mask only messages or hide completely.                    

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

Название Chat Filter for YouTube Live Chat Filter for YouTube Live
ID jalcplhakmckbmlbidmbmpaegcpbejog
Официальный URL https://chromewebstore.google.com/detail/chat-filter-for-youtube-l/jalcplhakmckbmlbidmbmpaegcpbejog
Описание Chrome Extension for Filtering Chat Messages on YouTube Live.
Размер файла 192 KB
Количество установок 3,413
Текущая Версия 0.0.12
Последнее Обновление 2023-05-04
Дата публикации 2020-05-25
Рейтинг 4.48/5 Всего 21 оценок
Разработчик https://fiahfy.blogspot.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/live_chat*"
            ],
            "all_frames": true,
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "name": "Chat Filter for YouTube Live",
    "description": "Chrome Extension for Filtering Chat Messages on YouTube Live.",
    "version": "0.0.12"
}