Yet Another YouTube Comment Filter

Filters comments on YouTube.

Что такое Yet Another YouTube Comment Filter?

Yet Another YouTube Comment Filter - это расширение Chrome, разработанное Yosuke Mizutani, и его основная функция - "Filters comments on YouTube.".

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

screenshot

Скачать файл CRX расширения Yet Another YouTube Comment Filter

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

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

                        This extension provides a comment filter on YouTube.

- Language Filter: You can configure the languages you want to see.
- Blocked Words: You can hide the comments that include specific keywords.
- Reply Filter: You can filter replies in addition to independent comments.
- Filter On/Off Button: You can turn on/off the filter for each tab.                    

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

Название Yet Another YouTube Comment Filter Yet Another YouTube Comment Filter
ID kdmngkpgnecnahcpkdcmbcekonkcbdpc
Официальный URL https://chromewebstore.google.com/detail/yet-another-youtube-comme/kdmngkpgnecnahcpkdcmbcekonkcbdpc
Описание Filters comments on YouTube.
Размер файла 113 KB
Количество установок 841
Текущая Версия 0.2.1
Последнее Обновление 2022-05-03
Дата публикации 2021-01-03
Рейтинг 4.25/5 Всего 8 оценок
Разработчик Yosuke Mizutani
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mogproject/yay-filter
Поддерживаемые языки en,ru,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Yet Another YouTube Comment Filter",
    "version": "0.2.1",
    "description": "Filters comments on YouTube.",
    "author": "Yosuke Mizutani",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/browser-polyfill.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/yay-filter.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_title": "Yay Filter",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/yayFilterIcon16.png",
        "32": "icons\/yayFilterIcon32.png",
        "48": "icons\/yayFilterIcon48.png",
        "96": "icons\/yayFilterIcon96.png",
        "128": "icons\/yayFilterIcon128.png"
    },
    "homepage_url": "https:\/\/github.com\/mogproject\/yay-filter",
    "default_locale": "en"
}