Alert Control

Control browser alert windows. Block by default or on specific websites.

Что такое Alert Control?

Alert Control - это расширение Chrome, разработанное https://alertcontrol.s13.us, и его основная функция - "Control browser alert windows. Block by default or on specific websites.".

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

screenshot
screenshot
screenshot

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

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

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

                        Stop the browser alert dialogs from taking over the tab!

Configure to block all alerts or filter by site. View blocked alerts by clicking the icon. Can now block confirm and prompt dialogs as well.

Questions? Contact me at [email protected]                    

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

Название Alert Control Alert Control
ID ofjjanaennfbgpccfpbghnmblpdblbef
Официальный URL https://chromewebstore.google.com/detail/alert-control/ofjjanaennfbgpccfpbghnmblpdblbef
Описание Control browser alert windows. Block by default or on specific websites.
Размер файла 48.04 KB
Количество установок 20,000
Текущая Версия 1.3
Последнее Обновление 2018-06-20
Дата публикации 2018-06-20
Рейтинг 3.46/5 Всего 177 оценок
Разработчик https://alertcontrol.s13.us
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Alert Control",
    "version": "1.3",
    "description": "Control browser alert windows. Block by default or on specific websites.",
    "manifest_version": 2,
    "icons": {
        "16": "\/img\/icon16.png",
        "32": "\/img\/icon32.png",
        "48": "\/img\/icon48.png",
        "128": "\/img\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/chrp.js",
            "js\/bg.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "js": [
                "js\/alerts.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "page_action": {
        "default_icon": "\/img\/pageaction.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}