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
}