CommentBlock

Block spam/scam YouTube comments

Что такое CommentBlock?

CommentBlock - это расширение Chrome, разработанное Xenova, и его основная функция - "Block spam/scam YouTube comments".

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

screenshot
screenshot

Скачать файл CRX расширения CommentBlock

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

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

                        CommentBlock is an open-source browser extension that automatically blocks spam/scam YouTube comments.                    

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

Название CommentBlock CommentBlock
ID pnhkbjdbaioddkchelkolhbhcmlibjfb
Официальный URL https://chromewebstore.google.com/detail/commentblock/pnhkbjdbaioddkchelkolhbhcmlibjfb
Описание Block spam/scam YouTube comments
Размер файла 400 KB
Количество установок 26
Текущая Версия 0.0.3
Последнее Обновление 2023-02-28
Дата публикации 2023-02-13
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Xenova
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/xenova/commentblock
URL страницы помощи https://github.com/xenova/commentblock
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CommentBlock",
    "description": "Block spam\/scam YouTube comments",
    "version": "0.0.3",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "css": [
                "styles\/style.css"
            ],
            "js": [
                "scripts\/defaults.js",
                "scripts\/utils.js",
                "scripts\/storage.js",
                "scripts\/labels.js",
                "scripts\/preprocess.js",
                "scripts\/emojis.js",
                "scripts\/detection.js",
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon.png",
            "24": "icons\/icon.png",
            "32": "icons\/icon.png",
            "128": "icons\/icon-128x128.png"
        },
        "default_title": "CommentBlock",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "icons\/icon.png",
        "32": "icons\/icon.png",
        "64": "icons\/icon.png",
        "128": "icons\/icon-128x128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}