Zoom Extension For Gov

Zoom Extension For Gov

Recommended, support FireFox 45+. The Zoom Firefox Extension allows participants to schedule Zoom cloud meetings directly from Google Calendar. you can start an instant meeting or schedule a future meeting via a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "2.1.55",
  "description": "Schedule Zoom meetings directly from Google Calendar",
  "manifest_version": 2,
  "name": "Zoom Extension For Gov",
  "homepage_url": "https://zoom.us/download",
  "icons": {
    "48": "images/icon-48.png"
  },
  "background": {
    "scripts": [
      "js/lib.bundle.js",
      "js/utils.bundle.js",
      "js/background.bundle.js"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "https://calendar.google.com/calendar/*",
    "https://accounts.google.com/Logout",
    "https://*.zoomgov.com/*"
  ],
  "browser_action": {
    "default_icon": "images/icon-32.png",
    "default_title": "Zoom Extension",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "css/compstyle.css",
        "css/content.css"
      ],
      "js": [
        "js/lib.bundle.js",
        "js/utils.bundle.js",
        "js/content.bundle.js"
      ],
      "matches": [
        "https://calendar.google.com/calendar/*"
      ]
    },
    {
      "js": [
        "js/logintransit.bundle.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*.zoomgov.com/google/oauth/*",
        "https://*.zoomgov.com/saml/extension/*",
        "https://*.zoomgov.com/zm/extension_login/*"
      ]
    },
    {
      "js": [
        "js/installedcheck.bundle.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*.zoomgov.com/myhome*"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/select2.png",
    "images/zoom-video.png",
    "images/loading_24.gif",
    "images/trash.png",
    "images/photo.jpg",
    "images/loading_white.svg",
    "images/loading_gray.svg",
    "images/captcha-sprites.png",
    "images/icon-32.png",
    "images/icon.svg"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{46154242-8299-4012-a0fe-73f82ee4e8d3}"
    }
  }
}