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!

O que é Twitch Chat Blocker?

Twitch Chat Blocker é uma extensão do Chrome desenvolvida por Vello Vaherpuu, e sua principal característica é "Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Twitch Chat Blocker

Baixe arquivos de extensão Twitch Chat Blocker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Twitch Chat Blocker Twitch Chat Blocker
ID nbjimpahfmodcpmklbonpdpdpbgkkiof
URL Oficial https://chromewebstore.google.com/detail/twitch-chat-blocker/nbjimpahfmodcpmklbonpdpdpbgkkiof
Descrição Tired of spammers during some huge event on Twitch.tv? Then check this out. You can block users and MESSAGES with just one click!
Tamanho do Arquivo 1.1 MB
Contagem de Instalações 70
Versão Atual 0.0.2
Última Atualização 2018-01-15
Data de Publicação 2018-01-15
Classificação 2.25/5 Total de 4 Avaliações
Desenvolvedor Vello Vaherpuu
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}