Google Meet Attendance List

Google Meet Attendance List

Easiest way to save the attendance list for your meetings or lectures

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "5.0.0",
  "author": "Alex M",
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "externally_connectable": {
    "matches": [
      "*://*.meetlist.io/*"
    ]
  },
  "action": {
    "default_icon": {
      "16": "icons/logo-16.png",
      "24": "icons/logo-24.png",
      "32": "icons/logo-32.png",
      "48": "icons/logo-48.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "content_scripts": [
    {
      "js": [
        "browser-polyfill.js",
        "content.js"
      ],
      "matches": [
        "*://meet.google.com/*-*-*"
      ],
      "run_at": "document_idle",
      "all_frames": false
    },
    {
      "js": [
        "sync.js"
      ],
      "matches": [
        "*://*.meetlist.io/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "shims.js",
        "icons/logo-24.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; script-src-elem 'self'"
  },
  "icons": {
    "16": "icons/logo-16.png",
    "32": "icons/logo-32.png",
    "48": "icons/logo-48.png",
    "64": "icons/logo-64.png",
    "128": "icons/logo-128.png"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.meetlist.io/*",
    "*://api.meetlist.io/*"
  ]
}