Google Meet Attendance (Works with New UI)

Google Meet Attendance (Works with New UI)

Simple Chrome Extension to record single time, time-wise attendance of members and will download to csv file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Meet Attendance (Works with New UI)",
  "description": "Simple Chrome Extension to record single time, time-wise attendance of members and will download to csv file.",
  "permissions": [
    "tabs",
    "storage",
    "declarativeContent"
  ],
  "version": "2.1.2",
  "author": "p2pdops",
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "libs/xlsx.full.min.js",
        "attendance/utils.js",
        "attendance/main.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "optional_permissions": [
    "<all_urls>",
    "notifications"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "externally_connectable": {
    "matches": [
      "*://meet.google.com/*"
    ]
  },
  "page_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_popup": "popup/popup.html",
    "default_title": "Meet Attendance Collector"
  },
  "options_page": "options/options.html",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2
}