Block page unload

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

什么是Block page unload?

Block page unload是由Gergely Kántor开发的Chrome扩展程序,该扩展的主要功能是“Block unloading of a website without your explicit consent. Useful for testing site tracking.”。

扩展截图

screenshot

下载Block page unload扩展crx文件

下载Block page unload扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Block page unload Block page unload
ID hmekidfmkegefndfdaflmamlbnhpgdoj
官方URL https://chromewebstore.google.com/detail/block-page-unload/hmekidfmkegefndfdaflmamlbnhpgdoj
简介 Block unloading of a website without your explicit consent. Useful for testing site tracking.
文件大小 8.29 KB
安装次数 30
当前版本 0.1.0
更新时间 2021-06-06
上架时间 2021-06-06
评分 5.00/5 共1次评分
开发者 Gergely Kántor
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}