TrollAway

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

Was ist TrollAway?

TrollAway ist eine Chrome-Erweiterung, die von http://amoffat.github.com/trollaway entwickelt wurde, und ihr Hauptmerkmal ist "Blacklist with auto-downvoting for Reddit. For those special trolls.".

TrollAway-Erweiterungs-CRX-Datei herunterladen

Laden Sie TrollAway-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name TrollAway TrollAway
ID aepafkodnebdjpodpajigeffnjibjlba
Offizielle URL https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba
Beschreibung Blacklist with auto-downvoting for Reddit. For those special trolls.
Dateigröße 124 KB
Installationsanzahl 29
Aktuelle Version 0.4
Letztes Update 2012-08-11
Veröffentlichungsdatum 2012-08-11
Bewertung 2.75/5 Insgesamt 8 Bewertungen
Entwickler http://amoffat.github.com/trollaway
Zahlungsart free
Erweiterungswebsite http://amoffat.github.com/trollaway/
Unterstützte Sprachen 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"
    }
}