TrollAway

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

Qu'est-ce que TrollAway ?

TrollAway est une extension Chrome développée par http://amoffat.github.com/trollaway, et sa fonction principale est "Blacklist with auto-downvoting for Reddit. For those special trolls.".

Télécharger le fichier CRX de l'extension TrollAway

Téléchargez les fichiers d'extension TrollAway 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

                        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.                    

Informations de Base sur l'Extension

Nom TrollAway TrollAway
ID aepafkodnebdjpodpajigeffnjibjlba
URL Officiel https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba
Description Blacklist with auto-downvoting for Reddit. For those special trolls.
Taille du Fichier 124 KB
Nombre d'Installations 29
Version Actuelle 0.4
Dernière Mise à Jour 2012-08-11
Date de Publication 2012-08-11
Évaluation 2.75/5 Total 8 Évaluations
Développeur http://amoffat.github.com/trollaway
Type de Paiement free
Site Web de l'Extension http://amoffat.github.com/trollaway/
Langues Prises en Charge 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"
    }
}