TrollAway

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

Hvad er TrollAway?

TrollAway er en Chrome-udvidelse udviklet af http://amoffat.github.com/trollaway, og dens hovedfunktion er "Blacklist with auto-downvoting for Reddit. For those special trolls.".

Download TrollAway-udvidelses-CRX-fil

Download TrollAway-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn TrollAway TrollAway
ID aepafkodnebdjpodpajigeffnjibjlba
Officiel URL https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba
Beskrivelse Blacklist with auto-downvoting for Reddit. For those special trolls.
Filstørrelse 124 KB
Antal Installationer 29
Nuværende Version 0.4
Senest Opdateret 2012-08-11
Udgivelsesdato 2012-08-11
Bedømmelse 2.75/5 Samlet 8 Bedømmelser
Udvikler http://amoffat.github.com/trollaway
Betalingsmetode free
Udvidelseswebsted http://amoffat.github.com/trollaway/
Understøttede Sprog 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"
    }
}