TrollAway
Blacklist with auto-downvoting for Reddit. For those special trolls.
Wat is TrollAway?
TrollAway is een Chrome-extensie ontwikkeld door http://amoffat.github.com/trollaway, en de belangrijkste functie is "Blacklist with auto-downvoting for Reddit. For those special trolls.".
Download het CRX-bestand van de extensie TrollAway
Download TrollAway-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | aepafkodnebdjpodpajigeffnjibjlba |
Officiële URL | https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba |
Beschrijving | Blacklist with auto-downvoting for Reddit. For those special trolls. |
Bestandsgrootte | 124 KB |
Aantal Installaties | 29 |
Huidige Versie | 0.4 |
Laatst Bijgewerkt | 2012-08-11 |
Publicatiedatum | 2012-08-11 |
Beoordeling | 2.75/5 Totaal 8 Beoordelingen |
Ontwikkelaar | http://amoffat.github.com/trollaway |
Betalingswijze | free |
Extensiewebsite | http://amoffat.github.com/trollaway/ |
Ondersteunde Talen | 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" } } |