Hide self in Google Meet

Hide self in Google Meet

Automatically hide your self view in Google Meet - better for your mental health!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide self in Google Meet",
  "description": "Automatically hide your self view in Google Meet - better for your mental health!",
  "version": "1.6",
  "manifest_version": 3,
  "icons": {
    "16": "images/[email protected]",
    "32": "images/[email protected]",
    "48": "images/[email protected]",
    "128": "images/[email protected]"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*-*-*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}