TrollAway
Blacklist with auto-downvoting for Reddit. For those special trolls.
What is TrollAway?
TrollAway is a Chrome extension developed by http://amoffat.github.com/trollaway, and its main feature is "Blacklist with auto-downvoting for Reddit. For those special trolls.".
Download TrollAway Extension CRX File
Download TrollAway extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | aepafkodnebdjpodpajigeffnjibjlba |
Official URL | https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba |
Description | Blacklist with auto-downvoting for Reddit. For those special trolls. |
File Size | 124 KB |
Installation Count | 29 |
Current Version | 0.4 |
Last Updated | 2012-08-11 |
Publish Date | 2012-08-11 |
Rating | 2.75/5 Total 8 Ratings |
Developer | http://amoffat.github.com/trollaway |
Payment Type | free |
Extension Website | http://amoffat.github.com/trollaway/ |
Supported Languages | 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" } } |