NLP Twitch Chat Filter

Filter out unwanted messages.

¿Qué es NLP Twitch Chat Filter?

NLP Twitch Chat Filter es una extensión de Chrome desarrollada por nlptwitchchatfilter, y su función principal es "Filter out unwanted messages.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión NLP Twitch Chat Filter

Descarga archivos de extensión NLP Twitch Chat Filter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre NLP Twitch Chat Filter NLP Twitch Chat Filter
ID jjgcebifihedgnbcefehgcnkkeccchpc
URL Oficial https://chromewebstore.google.com/detail/nlp-twitch-chat-filter/jjgcebifihedgnbcefehgcnkkeccchpc
Descripción Filter out unwanted messages.
Tamaño del Archivo 279 MB
Cantidad de Instalaciones 59
Versión Actual 0.0.0.3
Última Actualización 2021-05-01
Fecha de Publicación 2021-04-14
Calificación 4.50/5 Total de 6 Calificaciones
Desarrollador nlptwitchchatfilter
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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\/*"
    ]
}