Death to comments!

Banish comments from your internet

Что такое Death to comments!?

Death to comments! - это расширение Chrome, разработанное Tom Chambers, и его основная функция - "Banish comments from your internet".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Death to comments!

Скачайте файлы расширений Death to comments! в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Are you sick and tired of reading through an endless stream of vitriol and lunacy? Is your worldview being poisoned by bizarre claims and unnecessary personal attacks?

Death to Comments is a chrome extension that blocks comments everywhere. Works on youtube and gakwer sites. Future features may include whitelisting.

This is beta software that I made in the past hour, there may be bugs and performance issues. Please email me at [email protected] with bugs and feature requests. I will try to be responsive.

Source code for the comment blocker is available at: https://github.com/tomchambers2/death_to_comments. You are welcome to contribute.                    

Основная информация о расширении

Название Death to comments! Death to comments!
ID khkoofdalhndgpihmjeabjljegaghbph
Официальный URL https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph
Описание Banish comments from your internet
Размер файла 4.68 KB
Количество установок 15
Текущая Версия 0.1
Последнее Обновление 2014-08-20
Дата публикации 2014-08-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Tom Chambers
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Death to comments!",
    "description": "Banish comments from your internet",
    "version": "0.1",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}