Fast Attendance

Fast Attendance

Take attendance from Google Meet with the click of a button! Integrated with times + days of the week - enter once, and you're done!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fast Attendance",
  "short_name": "Fast Attendance",
  "description": "Take attendance from Google Meet with the click of a button! Integrated with times + days of the week - enter once, and you're done!",
  "version": "0.0.0.2",
  "version_name": "0.0.0.2 beta",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "Images/icon-16px.png",
    "19": "Images/icon-19px.png",
    "38": "Images/icon-38px.png",
    "48": "Images/icon-48px.png",
    "128": "Images/icon-128px.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*-*-*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  }
}