Block page unload

Block unloading of a website without your explicit consent. Useful for testing site tracking.

Cos'è Block page unload?

Block page unload è un'estensione di Chrome sviluppata da Gergely Kántor, e la sua funzione principale è "Block unloading of a website without your explicit consent. Useful for testing site tracking.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Block page unload

Scarica i file di estensione Block page unload in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Block unloading of a website without your explicit consent, when a link is clicked or a form is submitted. This behavior can be turned on by clicking on the extension icon, and this is valid for that given page. Must be re-enabled upon page reload as well. This functionality is useful for testing testing various page analytics functions, like click tracking, form tracking.                    

Informazioni di Base sull'Estensione

Nome Block page unload Block page unload
ID hmekidfmkegefndfdaflmamlbnhpgdoj
URL Ufficiale https://chromewebstore.google.com/detail/block-page-unload/hmekidfmkegefndfdaflmamlbnhpgdoj
Descrizione Block unloading of a website without your explicit consent. Useful for testing site tracking.
Dimensione del File 8.29 KB
Conteggio Installazioni 30
Versione Corrente 0.1.0
Ultimo Aggiornamento 2021-06-06
Data di Pubblicazione 2021-06-06
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Gergely Kántor
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Block page unload",
    "description": "Block unloading of a website without your explicit consent. Useful for testing site tracking.",
    "version": "0.1.0",
    "browser_action": {
        "default_title": "Block unloading of this page",
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ]
}