Anti-Social - hide all the comments!

Hide comment sections on sites and blogs. Read the content that matters to you without accidentally ruining your day with Trolls.

Что такое Anti-Social - hide all the comments!?

Anti-Social - hide all the comments! - это расширение Chrome, разработанное labyrinthlabs, и его основная функция - "Hide comment sections on sites and blogs. Read the content that matters to you without accidentally ruining your day with Trolls.".

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

screenshot
screenshot

Скачать файл CRX расширения Anti-Social - hide all the comments!

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

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

                        See no Trolls, hear no Trolls, be no Troll: this extension hides comments sections on sites and blogs, leaving you free to read the content that matters to you without accidentally ruining your day with Trolls (or worse: inviting your dark side for an Internet discussion)                    

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

Название Anti-Social - hide all the comments! Anti-Social - hide all the comments!
ID ngmpaodhbmmkamjlgdajipkanidojngm
Официальный URL https://chromewebstore.google.com/detail/anti-social-hide-all-the/ngmpaodhbmmkamjlgdajipkanidojngm
Описание Hide comment sections on sites and blogs. Read the content that matters to you without accidentally ruining your day with Trolls.
Размер файла 41.97 KB
Количество установок 205
Текущая Версия 1.0.1
Последнее Обновление 2015-03-14
Дата публикации 2015-03-14
Рейтинг 3.78/5 Всего 9 оценок
Разработчик labyrinthlabs
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/herval/antisocial-chrome
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Anti-Social - hide all the comments!",
    "description": "Hide comment sections on sites and blogs. Read the content that matters to you without accidentally ruining your day with Trolls.",
    "version": "1.0.1",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "jquery-1.11.2.min.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Hiding comments, yay!"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "antisocial.css"
            ],
            "js": [
                "jquery-1.11.2.min.js",
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}