Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "go\/meet - Instant Google Meet",
"version": "1.0.3",
"description": "Type 'go\/meet' in the address bar to instantly create and join a Google Meet with link copied to clipboard",
"author": "Matt Blumberg",
"permissions": [
"tabs",
"clipboardWrite",
"storage",
"webNavigation"
],
"host_permissions": [
"https:\/\/meet.google.com\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"omnibox": {
"keyword": "go"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"trigger.html",
"trigger.js",
"icons\/*"
],
"matches": [
"<all_urls>"
]
}
]
}