TrollAway
Blacklist with auto-downvoting for Reddit. For those special trolls.
Co to jest TrollAway?
TrollAway to rozszerzenie Chrome opracowane przez http://amoffat.github.com/trollaway, a jego główną funkcją jest „Blacklist with auto-downvoting for Reddit. For those special trolls.”.
Pobierz plik CRX rozszerzenia TrollAway
Pobierz pliki rozszerzeń TrollAway w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | aepafkodnebdjpodpajigeffnjibjlba |
Oficjalny URL | https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba |
Opis | Blacklist with auto-downvoting for Reddit. For those special trolls. |
Rozmiar pliku | 124 KB |
Liczba instalacji | 29 |
Aktualna Wersja | 0.4 |
Ostatnia Aktualizacja | 2012-08-11 |
Data Publikacji | 2012-08-11 |
Ocena | 2.75/5 Łącznie 8 Oceny |
Deweloper | http://amoffat.github.com/trollaway |
Typ Płatności | free |
Strona Rozszerzenia | http://amoffat.github.com/trollaway/ |
Obsługiwane Języki | 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" } } |