Attendance for Google Meet™

Attendance for Google Meet™

Simple way to take attendance on Google Meet™

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_icon": "img/512.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_AppName__"
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "content_scripts": [
    {
      "js": [
        "/js/contents.js",
        "/js/sidebar.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "homepage_url": "https://google-meet-attendance.dllplayer.com/",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png",
    "256": "img/256.png"
  },
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "offline_enabled": true,
  "permissions": [
    "storage"
  ],
  "version": "3.0.0",
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}