Examine source code of Google Meet - Call eXplorer

Inspect and view changes in Google Meet - Call eXplorer 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Meet - Call eXplorer",
  "side_panel": {
    "default_path": "index.html"
  },
  "action": {
    "default_path": "index.html",
    "default_icon": "icon.png",
    "default_title": "Open Call eXplorer"
  },
  "version": "1.3.0",
  "description": "Enhance your Google Meet with Call eXplorer: a Chrome app for live transcripts, summaries, and instant meeting-related answers.",
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "icons": {
    "16": "icon16.png",
    "24": "icon24.png",
    "38": "icon38.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*-*-*"
      ],
      "js": [
        "./static/js/content.js"
      ]
    },
    {
      "matches": [
        "*://meet.google.com/*-*-*"
      ],
      "js": [
        "./static/js/rtcinjector.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "sidePanel"
  ],
  "host_permissions": [
    "*://meet.google.com/*-*-*",
    "*://*.openai.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/static/js/googlemeet.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}