Block page unload

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

Hvad er Block page unload?

Block page unload er en Chrome-udvidelse udviklet af Gergely Kántor, og dens hovedfunktion er "Block unloading of a website without your explicit consent. Useful for testing site tracking.".

Udvidelsesskærmbilleder

screenshot

Download Block page unload-udvidelses-CRX-fil

Download Block page unload-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Block page unload Block page unload
ID hmekidfmkegefndfdaflmamlbnhpgdoj
Officiel URL https://chromewebstore.google.com/detail/block-page-unload/hmekidfmkegefndfdaflmamlbnhpgdoj
Beskrivelse Block unloading of a website without your explicit consent. Useful for testing site tracking.
Filstørrelse 8.29 KB
Antal Installationer 30
Nuværende Version 0.1.0
Senest Opdateret 2021-06-06
Udgivelsesdato 2021-06-06
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Gergely Kántor
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}