ScamBlock Plus

Blocks the popup boxes typically found on scam tech-support websites

Что такое ScamBlock Plus?

ScamBlock Plus - это расширение Chrome, разработанное Michael Goen, и его основная функция - "Blocks the popup boxes typically found on scam tech-support websites".

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

screenshot

Скачать файл CRX расширения ScamBlock Plus

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

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

                        ScamBlock Plus is designed to prevent the intrusive popups found on scam tech-support websites that freeze the browser and make it difficult to navigate. 

Rather than having to force-close the browser and start again, this extension prevents the popups from happening in the first place.                    

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

Название ScamBlock Plus ScamBlock Plus
ID hiicdkaofeoekndonhpadanmmejclpjc
Официальный URL https://chrome.google.com/webstore/detail/scamblock-plus/hiicdkaofeoekndonhpadanmmejclpjc
Описание Blocks the popup boxes typically found on scam tech-support websites
Размер файла 14.09 KB
Количество установок 174
Текущая Версия 0.1
Последнее Обновление 2017-02-28
Дата публикации 2017-02-27
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Michael Goen
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScamBlock Plus",
    "description": "Blocks the popup boxes typically found on scam tech-support websites",
    "version": "0.1",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js"
    ]
}