Mr Meet - Take Attendance & Send Questions

Mr Meet - Take Attendance & Send Questions

Adds new class-oriented functionality to Google Meet. Take attendance, send questions and select a random student.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.2.8",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://apis.google.com/; object-src 'self'",
  "oauth2": {
    "client_id": "939578646176-v6c694v99avks940898fvi8jmnruoso9.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvD0j1f80ucKi96W3lAGmcJvHE13LnijS300Zwk1U/ciGBDNiHMW5Az+ITFv9bK25HEQ2DAgZzNy4BGZ/xAIpwvlxsPax2pzHePu2NyHHvMS2f4JX6GJvOLdG9CtRNnqA+tGdW+TdWMNLvhqlB+NI7xdPaIezp2KHXUejcrUi2c3CU03QJHSsKWbL+9McjTOgMgtEbIG2QrHY9PceHxkCeSxRETx3hxhnVT14MPYGInUlMQqVY7wH/bqAi5Lk4tJNEKYhdytr1kGafqGhjaLv3Jnl+gGyLkgjJJTghM/urHo/d/MdHlGJsLIZV7462/6RiJVgJd28xGpbsddsanO3GwIDAQAB",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/sweet-alert.js",
        "js/Chart.min.js",
        "scripts/content.js"
      ],
      "css": [
        "css/Chart.min.css"
      ]
    }
  ],
  "background": {
    "page": "html/background.html",
    "persistent": false
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png",
      "48": "images/48.png",
      "128": "images/128.png"
    }
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "permissions": [
    "identity",
    "storage",
    "tabs",
    "https://meet.google.com/*",
    "https://www.googleapis.com/*"
  ],
  "web_accessible_resources": [
    "res/*"
  ]
}