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!

Qu'est-ce que Twitch Chat Blocker ?

Twitch Chat Blocker est une extension Chrome développée par Vello Vaherpuu, et sa fonction principale est "Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Twitch Chat Blocker

Téléchargez les fichiers d'extension Twitch Chat Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Twitch Chat Blocker Twitch Chat Blocker
ID nbjimpahfmodcpmklbonpdpdpbgkkiof
URL Officiel https://chromewebstore.google.com/detail/twitch-chat-blocker/nbjimpahfmodcpmklbonpdpdpbgkkiof
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!
Taille du Fichier 1.1 MB
Nombre d'Installations 70
Version Actuelle 0.0.2
Dernière Mise à Jour 2018-01-15
Date de Publication 2018-01-15
Évaluation 2.25/5 Total 4 Évaluations
Développeur Vello Vaherpuu
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}