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.

What is Disable Page Visibility API?

Disable Page Visibility API is a Chrome extension developed by Marvin Schopf, and its main feature is "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.".

Extension Screenshots

screenshot

Download Disable Page Visibility API Extension CRX File

Download Disable Page Visibility API extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Disable Page Visibility API Disable Page Visibility API
ID eecfoibnnhheckhfokpihgefmlnenofb
Official URL https://chromewebstore.google.com/detail/disable-page-visibility-a/eecfoibnnhheckhfokpihgefmlnenofb
Description Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.
File Size 16.67 KB
Installation Count 13,784
Current Version 1.0.1
Last Updated 2021-02-02
Publish Date 2021-02-02
Rating 4.16/5 Total 32 Ratings
Developer Marvin Schopf
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}