Alert Control

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

What is Alert Control?

Alert Control is a Chrome extension developed by https://alertcontrol.s13.us, and its main feature is "Control browser alert windows. Block by default or on specific websites.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Alert Control Extension CRX File

Download Alert Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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]                    

Extension Basic Information

Name Alert Control Alert Control
ID ofjjanaennfbgpccfpbghnmblpdblbef
Official URL https://chromewebstore.google.com/detail/alert-control/ofjjanaennfbgpccfpbghnmblpdblbef
Description Control browser alert windows. Block by default or on specific websites.
File Size 48.04 KB
Installation Count 20,000
Current Version 1.3
Last Updated 2018-06-20
Publish Date 2018-06-20
Rating 3.46/5 Total 177 Ratings
Developer https://alertcontrol.s13.us
Payment Type free
Supported Languages 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"
    ]
}