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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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
}