Record & Summarize your Meetings - Inkdrop

Maximize Meeting Efficiency with Inkdrop - Record, Transcribe & Summarize - Compatible with Google Meet
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",
  "name": "Record & Summarize your Meetings - Inkdrop",
  "description": "Maximize Meeting Efficiency with Inkdrop - Record, Transcribe & Summarize - Compatible with Google Meet",
  "version": "0.1.3.4",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "js/meetSidebarScript.js",
        "js/activationButton.js",
        "js/windowAlerts.js"
      ]
    }
  ],
  "oauth2": {
    "client_id": "455291858803-1ie3et6b69s2c5src08b882m3085t47c.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "logo-white.png",
        "logo.png",
        "start.png"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ],
  "permissions": [
    "identity",
    "storage"
  ],
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  }
}