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.                    

擴展基本資訊

名稱 TrollAway TrollAway
ID aepafkodnebdjpodpajigeffnjibjlba
官方網址 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"
    }
}