Block page unload

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

Что такое Block page unload?

Block page unload - это расширение Chrome, разработанное Gergely Kántor, и его основная функция - "Block unloading of a website without your explicit consent. Useful for testing site tracking.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Block page unload

Скачайте файлы расширений 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"
    ]
}