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.

Was ist Disable Page Visibility API?

Disable Page Visibility API ist eine Chrome-Erweiterung, die von Marvin Schopf entwickelt wurde, und ihr Hauptmerkmal ist "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.".

Erweiterungsscreenshots

screenshot

Disable Page Visibility API-Erweiterungs-CRX-Datei herunterladen

Laden Sie Disable Page Visibility API-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Disable Page Visibility API Disable Page Visibility API
ID eecfoibnnhheckhfokpihgefmlnenofb
Offizielle URL https://chromewebstore.google.com/detail/disable-page-visibility-a/eecfoibnnhheckhfokpihgefmlnenofb
Beschreibung Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.
Dateigröße 16.67 KB
Installationsanzahl 13,784
Aktuelle Version 1.0.1
Letztes Update 2021-02-02
Veröffentlichungsdatum 2021-02-02
Bewertung 4.16/5 Insgesamt 32 Bewertungen
Entwickler Marvin Schopf
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}