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ファイルをダウンロード
TrollAway拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" } } |