Disable Page Visibility API

Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.

Что такое Disable Page Visibility API?

Disable Page Visibility API - это расширение Chrome, разработанное Marvin Schopf, и его основная функция - "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.".

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

screenshot

Скачать файл CRX расширения Disable Page Visibility API

Скачайте файлы расширений Disable Page Visibility API в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This addon disables the Page Visibility API. This prevents, for example, video conferencing systems from detecting whether you are in their tab or in another window.

The source code of this add-on can be found here: https://github.com/marvinschopf/disable-page-visibility-api



The addon's icon is a derivative of "Expand New Tab" by Syafiqa Fickle from the Noun Project, used under CC BY.                    

Основная информация о расширении

Название Disable Page Visibility API Disable Page Visibility API
ID eecfoibnnhheckhfokpihgefmlnenofb
Официальный URL https://chromewebstore.google.com/detail/disable-page-visibility-a/eecfoibnnhheckhfokpihgefmlnenofb
Описание Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.
Размер файла 16.67 KB
Количество установок 13,784
Текущая Версия 1.0.1
Последнее Обновление 2021-02-02
Дата публикации 2021-02-02
Рейтинг 4.16/5 Всего 32 оценок
Разработчик Marvin Schopf
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Page Visibility API",
    "version": "1.0.1",
    "author": "Marvin Schopf",
    "description": "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "disable.js"
            ]
        }
    ]
}