Block page unload

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

What is Block page unload?

Block page unload is a Chrome extension developed by Gergely Kántor, and its main feature is "Block unloading of a website without your explicit consent. Useful for testing site tracking.".

Extension Screenshots

screenshot

Download Block page unload Extension CRX File

Download Block page unload 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

                        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.                    

Extension Basic Information

Name Block page unload Block page unload
ID hmekidfmkegefndfdaflmamlbnhpgdoj
Official URL https://chromewebstore.google.com/detail/block-page-unload/hmekidfmkegefndfdaflmamlbnhpgdoj
Description Block unloading of a website without your explicit consent. Useful for testing site tracking.
File Size 8.29 KB
Installation Count 30
Current Version 0.1.0
Last Updated 2021-06-06
Publish Date 2021-06-06
Rating 5.00/5 Total 1 Ratings
Developer Gergely Kántor
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}