AutoLeaveMeet: Google Meet Auto Leaver

AutoLeaveMeet: Google Meet Auto Leaver

Automatically leave a Google meet when a certain threshold (number of participants leave within 12 seconds) is met!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AutoLeaveMeet: Google Meet Auto Leaver",
  "description": "Automatically leave a Google meet when a certain threshold (number of participants leave within 12 seconds) is met!",
  "version": "1.02",
  "manifest_version": 3,
  "background": {
    "service_worker": "./js/background.js"
  },
  "icons": {
    "128": "./img/alm-128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "https://meet.google.com/*",
    "http://meet.google.com/*"
  ],
  "action": {
    "default_popup": "popup.html"
  }
}