Google Meet Attendance Downloader

Google Meet Attendance Downloader

Take attendace of Google Meet with just One Click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Meet Attendance Downloader",
  "description": "Take attendace of Google Meet with just One Click ",
  "version": "1.4.2",
  "icons": {
    "128": "static/images/ICON.png"
  },
  "browser_action": {
    "default_icon": "static/images/ICON.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "/lib/html2canvas.min.js",
        "/scripts/Content/ContentScript.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "downloads"
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'"
}