Alert Control

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

Co to jest Alert Control?

Alert Control to rozszerzenie Chrome opracowane przez https://alertcontrol.s13.us, a jego główną funkcją jest „Control browser alert windows. Block by default or on specific websites.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Alert Control

Pobierz pliki rozszerzeń Alert Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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]                    

Podstawowe informacje o rozszerzeniu

Nazwa Alert Control Alert Control
ID ofjjanaennfbgpccfpbghnmblpdblbef
Oficjalny URL https://chromewebstore.google.com/detail/alert-control/ofjjanaennfbgpccfpbghnmblpdblbef
Opis Control browser alert windows. Block by default or on specific websites.
Rozmiar pliku 48.04 KB
Liczba instalacji 20,000
Aktualna Wersja 1.3
Ostatnia Aktualizacja 2018-06-20
Data Publikacji 2018-06-20
Ocena 3.46/5 Łącznie 177 Oceny
Deweloper https://alertcontrol.s13.us
Typ Płatności free
Obsługiwane Języki 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"
    ]
}