Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Gmeet kit: Auto-mute, Disable-camera, Save recent meetings & much more",
"version": "2.3.0",
"manifest_version": 3,
"minimum_chrome_version": "120",
"description": "Enhance Your Google Meet Experience",
"incognito": "split",
"action": {
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"tabs"
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"js": [
"scripts\/content-script.js"
],
"run_at": "document_start",
"all_frames": false
},
{
"js": [
"scripts\/fullscreen.js"
],
"matches": [
"https:\/\/meet.google.com\/*"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "scripts\/background.js"
},
"web_accessible_resources": [
{
"resources": [
"scripts\/content-script.js",
"scripts\/enhancer.js",
"scripts\/fullscreen.js"
],
"matches": [
"https:\/\/meet.google.com\/*"
]
}
]
}