TrollAway

Blacklist with auto-downvoting for Reddit. For those special trolls.

O que é TrollAway?

TrollAway é uma extensão do Chrome desenvolvida por http://amoffat.github.com/trollaway, e sua principal característica é "Blacklist with auto-downvoting for Reddit. For those special trolls.".

Baixar o arquivo CRX da Extensão TrollAway

Baixe arquivos de extensão TrollAway 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

                        TrollAway is a Reddit blacklisting extension for Google Chrome.  It allows you to
selectively add Reddit users to a blacklist, which is then used to auto-downvote any
future comments that user makes on a page you happen to visit.

The interface is super simple.  A "blacklist" link is added underneath every
comment.  Just fire and forget.  Any future comments that you see will be
checked against your blacklist.  If the user is in them, the comment is
downvoted.                    

Informações Básicas da Extensão

Nome TrollAway TrollAway
ID aepafkodnebdjpodpajigeffnjibjlba
URL Oficial https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba
Descrição Blacklist with auto-downvoting for Reddit. For those special trolls.
Tamanho do Arquivo 124 KB
Contagem de Instalações 29
Versão Atual 0.4
Última Atualização 2012-08-11
Data de Publicação 2012-08-11
Classificação 2.75/5 Total de 8 Avaliações
Desenvolvedor http://amoffat.github.com/trollaway
Tipo de Pagamento free
Site da Extensão http://amoffat.github.com/trollaway/
Idiomas Suportados en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TrollAway",
    "version": "0.4",
    "manifest_version": 2,
    "description": "Blacklist with auto-downvoting for Reddit.  For those special trolls.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "TrollAway",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/*",
                "http:\/\/reddit.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "downvote.js"
            ]
        }
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}