NLP Twitch Chat Filter

Filter out unwanted messages.

Что такое NLP Twitch Chat Filter?

NLP Twitch Chat Filter - это расширение Chrome, разработанное nlptwitchchatfilter, и его основная функция - "Filter out unwanted messages.".

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

screenshot

Скачать файл CRX расширения NLP Twitch Chat Filter

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

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

                        Is your Twitch chat too crowded with spam? This chat filter uses a combination of a deep learning NLP network and a linear regression model to filter out unwanted spam messages from your Twitch chat. Our model runs entirely in-browser, so your data never leaves Twitch and we don't store any identifying information about you. We also have a UI to allow you to customize your chat.                    

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

Название NLP Twitch Chat Filter NLP Twitch Chat Filter
ID jjgcebifihedgnbcefehgcnkkeccchpc
Официальный URL https://chromewebstore.google.com/detail/nlp-twitch-chat-filter/jjgcebifihedgnbcefehgcnkkeccchpc
Описание Filter out unwanted messages.
Размер файла 279 MB
Количество установок 59
Текущая Версия 0.0.0.3
Последнее Обновление 2021-05-01
Дата публикации 2021-04-14
Рейтинг 4.50/5 Всего 6 оценок
Разработчик nlptwitchchatfilter
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NLP Twitch Chat Filter",
    "description": "Filter out unwanted messages.",
    "version": "0.0.0.3",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "src\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*",
                "https:\/\/dashboard.twitch.tv\/*"
            ],
            "js": [
                "src\/background.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "model\/*"
    ]
}