Auto Admit for Google Meet

Automatically admit join requests from external guests to Google Meet
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "background": {
    "service_worker": "/js/welcome.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    },
    "default_popup": "popup.html"
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "offline_enabled": true,
  "version": "3.0.3",
  "content_scripts": [
    {
      "js": [
        "js/inject.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/icon-512.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "homepage_url": "https://auto-admit.freefinancetools.net",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}