Google Meet Attendance

Google Meet Attendance

This is Google meet attendance extension which is updated with new features on the users demand.

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",
  "version": "1.5.0",
  "description": "This is Google meet attendance extension which is updated with new features on the users demand.",
  "browser_action": {
    "default_icon": "/icons/icon16.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/content-e0a4c960.js",
        "contents.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+A"
      }
    }
  },
  "background": {
    "scripts": [
      "backgroundwork.js"
    ],
    "persistent": false
  },
  "icons": {
    "12": "icons/icon2.png",
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    "content.js",
    "html/settings.html"
  ]
}