Disable Page Visibility API

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.

Merlin
Additional files are visible only to premium users

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