TrollAway
Blacklist with auto-downvoting for Reddit. For those special trolls.
¿Qué es TrollAway?
TrollAway es una extensión de Chrome desarrollada por http://amoffat.github.com/trollaway, y su función principal es "Blacklist with auto-downvoting for Reddit. For those special trolls.".
Descargar Archivo CRX de la Extensión TrollAway
Descarga archivos de extensión TrollAway en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | aepafkodnebdjpodpajigeffnjibjlba |
URL Oficial | https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba |
Descripción | Blacklist with auto-downvoting for Reddit. For those special trolls. |
Tamaño del Archivo | 124 KB |
Cantidad de Instalaciones | 29 |
Versión Actual | 0.4 |
Última Actualización | 2012-08-11 |
Fecha de Publicación | 2012-08-11 |
Calificación | 2.75/5 Total de 8 Calificaciones |
Desarrollador | http://amoffat.github.com/trollaway |
Tipo de Pago | free |
Sitio Web de la Extensión | http://amoffat.github.com/trollaway/ |
Idiomas Soportados | 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" } } |