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.

Co to jest Disable Page Visibility API?

Disable Page Visibility API to rozszerzenie Chrome opracowane przez Marvin Schopf, a jego główną funkcją jest „Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Disable Page Visibility API

Pobierz pliki rozszerzeń Disable Page Visibility API w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Disable Page Visibility API Disable Page Visibility API
ID eecfoibnnhheckhfokpihgefmlnenofb
Oficjalny URL https://chromewebstore.google.com/detail/disable-page-visibility-a/eecfoibnnhheckhfokpihgefmlnenofb
Opis Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.
Rozmiar pliku 16.67 KB
Liczba instalacji 13,784
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2021-02-02
Data Publikacji 2021-02-02
Ocena 4.16/5 Łącznie 32 Oceny
Deweloper Marvin Schopf
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}