Attendance Automation System

Attendance Automation System

It is a Firefox Extension which helps in taking attendance of all presentees in a Meeting Session of Google Meet or Zoom.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Attendance Automation System",
  "version": "0.9",
  "description": "creates a list of all Meet chats",
  "author": "Shabinder Singh",
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*",
        "*://zoom.us/*",
        "*://us04web.zoom.us/*"
      ],
      "js": [
        "Meet-Attendance.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "Meet.png",
    "default_popup": "popup.html",
    "default_title": "Attendance Taker"
  }
}