Google Meet Notes, Agendas, Timer & Analytics

Google Meet Notes, Agendas, Timer & Analytics

Have productive and effective meetings with agendas, meeting notes, talk time, and next steps with Between Google Meet Extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Meet Notes, Agendas, Timer & Analytics",
  "description": "Have productive and effective meetings with agendas, meeting notes, talk time, and next steps with Between Google Meet Extension.",
  "version": "2.0.8",
  "manifest_version": 3,
  "action": {},
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://meet.google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "third-party/lodash-min.js",
        "src/canvas.js",
        "src/inject.js",
        "third-party/konva.min.js"
      ],
      "css": [
        "inject.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "scripting"
  ]
}