NLP Twitch Chat Filter

Filter out unwanted messages.

什么是NLP Twitch Chat Filter?

NLP Twitch Chat Filter是由nlptwitchchatfilter开发的Chrome扩展程序,该扩展的主要功能是“Filter out unwanted messages.”。

扩展截图

screenshot

下载NLP Twitch Chat Filter扩展crx文件

下载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 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\/*"
    ]
}