Easily get everyone attending a Google Meet and compare them to a list, create groups and more
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"browser_action": {
"default_popup": "popup.html",
"default_title": "Google Meet Breakout Rooms"
},
"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"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}