FREE Google Meet Attendance List Tracker

FREE Google Meet Attendance List Tracker

Easiest way to save the attendance list for your meetings or lectures in Google Meet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FREE Google Meet Attendance List Tracker",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "Easiest way to save the attendance list for your meetings or lectures in Google Meet.",
  "icons": {
    "16": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://meet.google.com/*",
        "https://meet.google.com/*"
      ],
      "js": [
        "scripts/jquery-3.5.1.min.js",
        "scripts/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup/popup.html"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "https://app.boloforms.com/",
    "http://127.0.0.1:8080/",
    "https://stage.boloforms.com/"
  ]
}