Twitch Chat Blocker

Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!

Was ist Twitch Chat Blocker?

Twitch Chat Blocker ist eine Chrome-Erweiterung, die von Vello Vaherpuu entwickelt wurde, und ihr Hauptmerkmal ist "Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!".

Erweiterungsscreenshots

screenshot

Twitch Chat Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Twitch Chat Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        If you are tired of spammers during huge event on Twitch.tv, but enjoy reading the comments like me, then this extensions is meant for you. It will add 2 extra buttons to each chat item which allow you to block all users messages or block all messages with the same text. For example hundreds of people are spamming !get 100, with this extension you can just block this message and avoid all the spam.

If you like this, please share. If you would like something to be added please let me know.                    

Grundlegende Informationen zur Erweiterung

Name Twitch Chat Blocker Twitch Chat Blocker
ID nbjimpahfmodcpmklbonpdpdpbgkkiof
Offizielle URL https://chromewebstore.google.com/detail/twitch-chat-blocker/nbjimpahfmodcpmklbonpdpdpbgkkiof
Beschreibung Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!
Dateigröße 1.1 MB
Installationsanzahl 70
Aktuelle Version 0.0.2
Letztes Update 2018-01-15
Veröffentlichungsdatum 2018-01-15
Bewertung 2.25/5 Insgesamt 4 Bewertungen
Entwickler Vello Vaherpuu
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Chat Blocker",
    "description": "Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": "icon_16x16.png",
        "default_popup": "background\/popup.html"
    },
    "icons": {
        "16": "icon_16x16.png",
        "48": "icon_48x48.png",
        "128": "icon_128x128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "css": [
                "front\/css.css"
            ],
            "js": [
                "deps\/fontawesome.js",
                "deps\/jquery.js",
                "front\/twitchChatScript.js"
            ]
        }
    ]
}