Google Meet Exit Page

Google Meet Exit Page

Configure the exit page after ending a Google Meet call.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Meet Exit Page",
  "description": "Configure the exit page after ending a Google Meet call.",
  "version": "0.0.5",
  "author": "Clyde D'Souza",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "content_scripts.js"
      ]
    }
  ]
}