Google Meet Enhancement Suite

Google Meet Enhancement Suite

40 new features for Google Meet such as mute all, remove all, auto admit, emojis, mirror videos, background color, and push to talk!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "author": "Corey Pollock & Keyfer Mathewson",
  "version": "5.0.8",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*",
        "*://meetenhancementsuite.com/"
      ],
      "js": [
        "extension.js"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "manifest_version": 3,
  "action": {
    "default_icon": "images/icon128.png",
    "default_popup": "popup.html"
  }
}