NLP Twitch Chat Filter
Filter out unwanted messages.
NLP Twitch Chat Filter क्या है?
NLP Twitch Chat Filter nlptwitchchatfilter द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filter out unwanted messages."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NLP Twitch Chat Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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\/*" ] } |