NLP Twitch Chat Filter

Filter out unwanted messages.

NLP Twitch Chat Filter là gì?

NLP Twitch Chat Filter là một tiện ích mở rộng Chrome được phát triển bởi nlptwitchchatfilter, và tính năng chính của nó là "Filter out unwanted messages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng NLP Twitch Chat Filter

Tải xuống các tệp mở rộng NLP Twitch Chat Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NLP Twitch Chat Filter NLP Twitch Chat Filter
ID jjgcebifihedgnbcefehgcnkkeccchpc
URL Chính Thức https://chromewebstore.google.com/detail/nlp-twitch-chat-filter/jjgcebifihedgnbcefehgcnkkeccchpc
Mô tả Filter out unwanted messages.
Kích Thước Tệp 279 MB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2021-05-01
Ngày Phát Hành 2021-04-14
Đánh Giá 4.50/5 Tổng số 6 Đánh Giá
Nhà Phát Triển nlptwitchchatfilter
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}