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.

O que é Disable Page Visibility API?

Disable Page Visibility API é uma extensão do Chrome desenvolvida por Marvin Schopf, e sua principal característica é "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Disable Page Visibility API

Baixe arquivos de extensão Disable Page Visibility API no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Disable Page Visibility API Disable Page Visibility API
ID eecfoibnnhheckhfokpihgefmlnenofb
URL Oficial https://chromewebstore.google.com/detail/disable-page-visibility-a/eecfoibnnhheckhfokpihgefmlnenofb
Descrição Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.
Tamanho do Arquivo 16.67 KB
Contagem de Instalações 13,784
Versão Atual 1.0.1
Última Atualização 2021-02-02
Data de Publicação 2021-02-02
Classificação 4.16/5 Total de 32 Avaliações
Desenvolvedor Marvin Schopf
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}