Google Meet Attendance, Grid View, Auto Admit

Google Meet Attendance, Grid View, Auto Admit

Track and monitor attendance in G Meet. Enabled Gridview and auto admit features

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content.js",
        "/libs/[email protected]"
      ]
    }
  ],
  "icons": {
    "16": "/images/icon16.png",
    "64": "/images/icon64.png",
    "128": "/images/icon128.png"
  },
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_title": "Attendance Collector",
    "default_icon": "/images/icon128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "offline_enabled": false,
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>",
    "downloads",
    "cookies"
  ],
  "version": "1.0.4"
}