NLP Twitch Chat Filter
Filter out unwanted messages.
NLP Twitch Chat Filterคืออะไร?
NLP Twitch Chat Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nlptwitchchatfilter และคุณลักษณะหลักของมันคือ "Filter out unwanted messages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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\/*" ] } |