TrollAway
Blacklist with auto-downvoting for Reddit. For those special trolls.
TrollAway란 무엇입니까?
TrollAway은(는) http://amoffat.github.com/trollaway에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blacklist with auto-downvoting for Reddit. For those special trolls."입니다.
TrollAway 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
ID | aepafkodnebdjpodpajigeffnjibjlba |
공식 URL | https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba |
설명 | Blacklist with auto-downvoting for Reddit. For those special trolls. |
파일 크기 | 124 KB |
설치 횟수 | 29 |
현재 버전 | 0.4 |
최근 업데이트 | 2012-08-11 |
출시 날짜 | 2012-08-11 |
평점 | 2.75/5 총 8 개의 평점 |
개발자 | http://amoffat.github.com/trollaway |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://amoffat.github.com/trollaway/ |
지원되는 언어 | 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" } } |