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
Eメール [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\/*"
    ]
}