Twitch Chat Filter

Filter out useless messages from Twitch chats.

ما هو Twitch Chat Filter؟

Twitch Chat Filter هو إضافة Chrome تم تطويرها بواسطة EvanDotPro، والميزة الرئيسية لها هي "Filter out useless messages from Twitch chats.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Twitch Chat Filter

قم بتنزيل ملفات الامتداد Twitch Chat Filter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Currently there are no settings, but this add-on will hide Twitch chat messages:

- Single word messages (@mentions, repeated words, single letters, and numbers do not count as words).
- Emote only messages.
- Sub and resub notifications.

It also hides the obnoxious leaderboard at the top of the chat.

There are a few rules specific to the type of messages common in Kitboga's channel, but they shouldn't affect the chat filter working on other channels.

At some point, if there is any interest, I will make this configurable.

Source: https://github.com/EvanDotPro/twitch-chat-filter                    

معلومات أساسية عن التمديد

الاسم Twitch Chat Filter Twitch Chat Filter
ID edldhcedhjpciodaefichchenblabceh
عنوان URL الرسمي https://chromewebstore.google.com/detail/twitch-chat-filter/edldhcedhjpciodaefichchenblabceh
الوصف Filter out useless messages from Twitch chats.
حجم الملف 92.3 KB
عدد التثبيتات 206
النسخة الحالية 0.1.2
آخر تحديث 2021-07-18
تاريخ النشر 2021-07-13
تقييم 4.50/5 مجموع تقييمات 2
المطور EvanDotPro
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/EvanDotPro/twitch-chat-filter
عنوان صفحة المساعدة https://github.com/EvanDotPro/twitch-chat-filter/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Chat Filter",
    "version": "0.1.2",
    "description": "Filter out useless messages from Twitch chats.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "thirdParty\/jquery-3.6.0.js",
                "thirdParty\/arrive-2.4.1.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}