MeetGeek: AI Meeting Notes, Summary & Transcript

Get automatic recordings, transcripts, and summaries for online meetings on Google Meet, Zoom, and Teams.
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",
  "description": "Get automatic recordings, transcripts, and summaries for online meetings on Google Meet, Zoom, and Teams.",
  "version": "1.2.5",
  "manifest_version": 3,
  "name": "MeetGeek: AI Meeting Notes, Summary & Transcript",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "sidePanel",
    "identity",
    "cookies",
    "tabs",
    "activeTab",
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "https://meet.google.com/*",
    "https://teams.microsoft.com/*",
    "https://teams.live.com/*",
    "https://*.zoom.us/*",
    "https://*.meetgeek.ai/*"
  ],
  "action": {
    "default_title": "Click to open panel",
    "default_icon": "icon-48.png"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*",
        "https://teams.microsoft.com/*",
        "https://teams.live.com/*",
        "https://*.zoom.us/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "devtools_page": "devtools.html",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self'; script-src-elem 'self' https://maps.googleapis.com"
  }
}