Web Launcher for Zoom

Web Launcher for Zoom

Automatically opens zoom in your browser without waiting for the link

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Web Launcher for Zoom",
  "description": "Automatically opens zoom in your browser without waiting for the link",
  "version": "2.0.1",
  "author": "[email protected]",
  "host_permissions": [
    "*://*.zoom.us/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.zoom.us/*"
      ],
      "js": [
        "arrive.min.js",
        "content_script.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "128": "img/icon.png"
  }
}