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
官方網址 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\/*"
    ]
}