TrollAway
Blacklist with auto-downvoting for Reddit. For those special trolls.
Cos'è TrollAway?
TrollAway è un'estensione di Chrome sviluppata da http://amoffat.github.com/trollaway, e la sua funzione principale è "Blacklist with auto-downvoting for Reddit. For those special trolls.".
Scarica il file CRX dell'estensione TrollAway
Scarica i file di estensione TrollAway in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | aepafkodnebdjpodpajigeffnjibjlba |
URL Ufficiale | https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba |
Descrizione | Blacklist with auto-downvoting for Reddit. For those special trolls. |
Dimensione del File | 124 KB |
Conteggio Installazioni | 29 |
Versione Corrente | 0.4 |
Ultimo Aggiornamento | 2012-08-11 |
Data di Pubblicazione | 2012-08-11 |
Valutazione | 2.75/5 Totale 8 Valutazioni |
Sviluppatore | http://amoffat.github.com/trollaway |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://amoffat.github.com/trollaway/ |
Lingue Supportate | 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" } } |