Breakout Rooms for Google Meet™

Breakout Rooms for Google Meet™

Easily get everyone attending a Google Meet and compare them to a list, create groups and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Breakout Rooms for Google Meet"
  },
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "/js/inject.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "/js/update.js"
    ]
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_appName__",
  "version": "1.0.0",
  "web_accessible_resources": [
    "js/breakoutRoom.js"
  ]
}