TrollAway

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

TrollAwayคืออะไร?

TrollAway เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://amoffat.github.com/trollaway และคุณลักษณะหลักของมันคือ "Blacklist with auto-downvoting for Reddit. For those special trolls."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TrollAway

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}