Instant Meet

Instant Meet

Start Google Meet calls instantly with just a click of a button!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Instant Meet",
  "description": "Start Google Meet calls instantly with just a click of a button!",
  "version": "1.0.0",
  "manifest_version": 3,
  "author": "Shahlin Ibrahim",
  "icons": {
    "16": "images/logo/logo-16.png",
    "32": "images/logo/logo-32.png",
    "48": "images/logo/logo-48.png",
    "128": "images/logo/logo-128.png"
  },
  "permissions": [],
  "action": {},
  "host_permissions": [
    "https://meet.google.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}