NLP Twitch Chat Filter

Filter out unwanted messages.

Qu'est-ce que NLP Twitch Chat Filter ?

NLP Twitch Chat Filter est une extension Chrome développée par nlptwitchchatfilter, et sa fonction principale est "Filter out unwanted messages.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension NLP Twitch Chat Filter

Téléchargez les fichiers d'extension NLP Twitch Chat Filter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom NLP Twitch Chat Filter NLP Twitch Chat Filter
ID jjgcebifihedgnbcefehgcnkkeccchpc
URL Officiel https://chromewebstore.google.com/detail/nlp-twitch-chat-filter/jjgcebifihedgnbcefehgcnkkeccchpc
Description Filter out unwanted messages.
Taille du Fichier 279 MB
Nombre d'Installations 59
Version Actuelle 0.0.0.3
Dernière Mise à Jour 2021-05-01
Date de Publication 2021-04-14
Évaluation 4.50/5 Total 6 Évaluations
Développeur nlptwitchchatfilter
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
    ]
}