Zoom Edge Extension For Gov

Zoom Edge Extension For Gov

Schedule Zoom meetings directly from Google Calendar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.8.32",
  "manifest_version": 3,
  "name": "Zoom Edge Extension For Gov",
  "description": "Schedule Zoom meetings directly from Google Calendar",
  "default_locale": "en",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://www.google.com/calendar/*",
    "https://calendar.google.com/calendar/*",
    "https://*.zoomgov.com/*"
  ],
  "content_security_policy": {
    "script-src": "'self' https://*.google.com https://*.zoomgov.com https://zoomgov.com",
    "object-src": "'self'"
  },
  "background": {
    "service_worker": "js/bg-loader.js"
  },
  "action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/[email protected]"
    },
    "default_popup": "popup.html",
    "default_title": "Zoom Edge Extension"
  },
  "content_scripts": [
    {
      "css": [
        "css/compstyle.css",
        "css/content.css"
      ],
      "js": [
        "js/lib.bundle.js",
        "js/utils.bundle.js",
        "js/content.bundle.js"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "matches": [
        "https://www.google.com/calendar/*",
        "https://calendar.google.com/calendar/*"
      ]
    },
    {
      "js": [
        "js/logintransit.bundle.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*.zoomgov.com/zm/extension_login/*"
      ]
    },
    {
      "js": [
        "js/extinstallcheck.bundle.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*.zoomgov.com/myhome*"
      ]
    }
  ],
  "options_page": "options.html",
  "icons": {
    "16": "/images/icon-16.png",
    "48": "/images/icon-48.png",
    "128": "/images/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/loading_24.gif",
        "images/select2.png",
        "images/loading_white.svg",
        "images/loading_gray.svg",
        "images/icon.svg",
        "js/injectobserver.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}