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.
¿Qué es Disable Page Visibility API?
Disable Page Visibility API es una extensión de Chrome desarrollada por Marvin Schopf, y su función principal es "Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Disable Page Visibility API
Descarga archivos de extensión Disable Page Visibility API en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Disable Page Visibility API |
ID | eecfoibnnhheckhfokpihgefmlnenofb |
URL Oficial | https://chromewebstore.google.com/detail/disable-page-visibility-a/eecfoibnnhheckhfokpihgefmlnenofb |
Descripción | Add-on to disable the Page Visibility API. This prevents conferencing systems from tracking if you are currently in another window. |
Tamaño del Archivo | 16.67 KB |
Cantidad de Instalaciones | 13,784 |
Versión Actual | 1.0.1 |
Última Actualización | 2021-02-02 |
Fecha de Publicación | 2021-02-02 |
Calificación | 4.16/5 Total de 32 Calificaciones |
Desarrollador | Marvin Schopf |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |