Mute Google Meet

Mute Google Meet

Mutes Google Meet from any tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Mute Google Meet",
  "description": "Mutes Google Meet from any tab.",
  "version": "1.0",
  "author": "Fernando França",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Mute Google Meet"
  },
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "https://meet.google.com/"
  ]
}