Attendance for Google Meet™

Attendance for Google Meet™

Simple way to take an attendance on Google Meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "/js/update-conf.js",
      "/js/update.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/512.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_AppName__"
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_AppDesc__",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png",
    "256": "img/256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "/js/contents.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 2,
  "name": "__MSG_AppName__",
  "offline_enabled": true,
  "permissions": [
    "activeTab",
    "https://meet.google.com/*"
  ],
  "version": "1.0.5",
  "version_name": "1.0.5",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}