NLP Twitch Chat Filter
Filter out unwanted messages.
Cos'è NLP Twitch Chat Filter?
NLP Twitch Chat Filter è un'estensione di Chrome sviluppata da nlptwitchchatfilter, e la sua funzione principale è "Filter out unwanted messages.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NLP Twitch Chat Filter
Scarica i file di estensione NLP Twitch Chat Filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | jjgcebifihedgnbcefehgcnkkeccchpc |
| URL Ufficiale | https://chromewebstore.google.com/detail/nlp-twitch-chat-filter/jjgcebifihedgnbcefehgcnkkeccchpc |
| Descrizione | Filter out unwanted messages. |
| Dimensione del File | 279 MB |
| Conteggio Installazioni | 59 |
| Versione Corrente | 0.0.0.3 |
| Ultimo Aggiornamento | 2021-05-01 |
| Data di Pubblicazione | 2021-04-14 |
| Valutazione | 4.50/5 Totale 6 Valutazioni |
| Sviluppatore | nlptwitchchatfilter |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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\/*"
]
} | |