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 je Disable Page Visibility API?

Disable Page Visibility API je rozšíření Chrome vyvinuté Marvin Schopf, a jeho hlavní funkcí je „Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Disable Page Visibility API

Stáhněte si soubory rozšíření Disable Page Visibility API ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Disable Page Visibility API Disable Page Visibility API
ID eecfoibnnhheckhfokpihgefmlnenofb
Oficiální URL https://chromewebstore.google.com/detail/disable-page-visibility-a/eecfoibnnhheckhfokpihgefmlnenofb
Popis Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.
Velikost souboru 16.67 KB
Počet instalací 13,784
Aktuální Verze 1.0.1
Poslední Aktualizace 2021-02-02
Datum Vydání 2021-02-02
Hodnocení 4.16/5 Celkem 32 Hodnocení
Vývojář Marvin Schopf
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}