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"
    }
}