MeetGPT - ChatGPT for Google Meet

MeetGPT - ChatGPT for Google Meet

An automated tool for taking notes during Google Meet sessions, compiling and summarizing the content using ChatGPT.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MeetGPT - ChatGPT for Google Meet",
  "description": "An automated tool for taking notes during Google Meet sessions, compiling and summarizing the content using ChatGPT.",
  "version": "1.0.0",
  "icons": {
    "64": "src/assets/img/64.png",
    "128": "src/assets/img/128.png"
  },
  "action": {
    "default_popup": "src/popup/index.html"
  },
  "options_page": "src/options/index.html",
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.index.ts.cb06c6c9.ec7e88dd.js"
      ],
      "all_frames": true,
      "css": [
        "assets/index.ts.bdc13f62.css"
      ],
      "matches": [
        "https://meet.google.com/*",
        "*://chat.openai.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "*://meet.google.com/*",
    "*://chat.openai.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://chat.openai.com/*",
        "https://meet.google.com/*"
      ],
      "resources": [
        "assets/_commonjsHelpers.b8add541.js",
        "assets/sweetalert2.all.e7a3fc69.js",
        "assets/index.ts.cb06c6c9.js"
      ],
      "use_dynamic_url": true
    }
  ]
}