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是由Marvin Schopf开发的Chrome扩展程序,该扩展的主要功能是“Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.”。

扩展截图

screenshot

下载Disable Page Visibility API扩展crx文件

下载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"
            ]
        }
    ]
}