Examine source code of Zoom

Inspect and view changes in Zoom source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "version": "3.1.0",
  "description": "This extension schedules Zoom meetings directly off Google Calendar",
  "manifest_version": 2,
  "name": "Zoom Meeting Scheduling",
  "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": [
    "tabs",
    "webRequest",
    "*://*/*",
    "activeTab",
    "storage",
    "unlimitedStorage",
    "webNavigation",
    "webRequestBlocking",
    "https://calendar.google.com/calendar/*",
    "https://accounts.google.com/Logout",
    "https://*.zoom.us/*",
    "https://*.zoom.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://*.zoom.us/google/oauth/*",
        "https://*.zoom.us/saml/extension/*",
        "https://*.zoom.us/zm/extension_login/*",
        "https://*.zoom.com/google/oauth/*",
        "https://*.zoom.com/saml/extension/*",
        "https://*.zoom.com/zm/extension_login/*"
      ]
    },
    {
      "js": [
        "js/installedcheck.bundle.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*.zoom.com/myhome*",
        "https://*.zoom.us/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": "{bb81d8c3-a9e4-43e6-93b5-ead1ce06838e}"
    }
  }
}