Quiz Master for Google Meet

Quiz Master for Google Meet

Turn any Google Meet into a Quiz Meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Quiz Master for Google Meet",
  "description": "Turn any Google Meet into a Quiz Meet",
  "version": "0.7.10",
  "icons": {
    "16": "images/icons/app-icon-16x16.png",
    "32": "images/icons/app-icon-32x32.png",
    "48": "images/icons/app-icon-48x48.png",
    "128": "images/icons/app-icon-128x128.png",
    "192": "images/icons/app-icon-192x192.png",
    "256": "images/icons/app-icon-256x256.png"
  },
  "browser_action": {
    "default_title": "Quiz Master for Google Meet",
    "default_icon": "images/icons/app-icon-128x128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "./js/browser-polyfill.js",
        "./js/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "images/*.png",
    "images/icons/*.png",
    "css/animations.css",
    "css/quizmaster.css",
    "js/settings-overlay.js",
    "settings-template.html",
    "audio/*.ogg",
    "audio/*.mp3",
    "trivia/*.json"
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'"
}