Silly Redirect for Zoom Meetings

Silly Redirect for Zoom Meetings

A web extension that redirects meetings to the web client.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "version": "4.0.0",
  "author": "Edoardo Tosin",
  "description": "__MSG_description__",
  "homepage_url": "https://github.com/EdoardoTosin/Silly-Redirect-for-Zoom-Meetings",
  "default_locale": "en",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png",
    "256": "icons/256x256.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "exclude_matches": [
        "*://*.zoom.us/wc/join/*",
        "*://*.zoomgov.com/wc/join/*",
        "file://*/*"
      ],
      "matches": [
        "*://*.zoom.us/*",
        "*://*.zoomgov.com/*"
      ],
      "js": [
        "js/toggle.js",
        "js/background.js",
        "js/getManifest.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{d20bd4aa-d2b5-4834-85e4-f563b48bb560}",
      "strict_min_version": "79.0"
    }
  },
  "action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/16x16.png",
      "32": "icons/32x32.png",
      "48": "icons/48x48.png",
      "64": "icons/64x64.png",
      "128": "icons/128x128.png",
      "256": "icons/256x256.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "html/popup.html"
  },
  "content_security_policy": {
    "extension_pages": "default-src 'self'"
  },
  "host_permissions": [
    "*://*.zoom.us/*",
    "*://*.zoomgov.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}