TrollAway

Blacklist with auto-downvoting for Reddit. For those special trolls.

TrollAway là gì?

TrollAway là một tiện ích mở rộng Chrome được phát triển bởi http://amoffat.github.com/trollaway, và tính năng chính của nó là "Blacklist with auto-downvoting for Reddit. For those special trolls.".

Tải xuống tệp CRX của tiện ích mở rộng TrollAway

Tải xuống các tệp mở rộng TrollAway dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TrollAway TrollAway
ID aepafkodnebdjpodpajigeffnjibjlba
URL Chính Thức https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba
Mô tả Blacklist with auto-downvoting for Reddit. For those special trolls.
Kích Thước Tệp 124 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2012-08-11
Ngày Phát Hành 2012-08-11
Đánh Giá 2.75/5 Tổng số 8 Đánh Giá
Nhà Phát Triển http://amoffat.github.com/trollaway
Loại Thanh Toán free
Trang Web Mở Rộng http://amoffat.github.com/trollaway/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}