Recommended, support FireFox 45+.
The Zoom Firefox Extension allows participants to schedule Zoom cloud meetings directly from Google Calendar. you can start an instant meeting or schedule a future meeting via a button.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"version": "2.2.4",
"description": "Schedule Zoom meetings directly from Google Calendar",
"manifest_version": 2,
"name": "Zoom Extension",
"homepage_url": "https://zoom.us/download",
"icons": {
"48": "images/icon-48.png"
},
"background": {
"scripts": [
"js/lib.bundle.js",
"js/utils.bundle.js",
"js/background.bundle.js"
]
},
"permissions": [
"activeTab",
"storage",
"unlimitedStorage",
"https://calendar.google.com/calendar/*",
"https://accounts.google.com/Logout",
"https://*.zoom.us/*",
"https://*.zoom.com/*"
],
"browser_action": {
"default_icon": "images/icon-32.png",
"default_title": "Zoom Extension",
"default_popup": "html/popup.html"
},
"content_scripts": [
{
"css": [
"css/compstyle.css",
"css/content.css"
],
"js": [
"js/lib.bundle.js",
"js/utils.bundle.js",
"js/content.bundle.js"
],
"run_at": "document_end",
"matches": [
"https://calendar.google.com/calendar/*"
]
},
{
"js": [
"js/logintransit.bundle.js"
],
"run_at": "document_end",
"matches": [
"https://*.zoom.us/google/oauth/*",
"https://*.zoom.us/saml/extension/*",
"https://*.zoom.us/zm/extension_login/*",
"https://*.zoom.com/google/oauth/*",
"https://*.zoom.com/saml/extension/*",
"https://*.zoom.com/zm/extension_login/*"
]
},
{
"js": [
"js/installedcheck.bundle.js"
],
"run_at": "document_end",
"matches": [
"https://*.zoom.com/myhome*",
"https://*.zoom.us/myhome*"
]
}
],
"web_accessible_resources": [
"images/select2.png",
"images/zoom-video.png",
"images/loading_24.gif",
"images/trash.png",
"images/photo.jpg",
"images/loading_white.svg",
"images/loading_gray.svg",
"images/captcha-sprites.png",
"images/icon-32.png",
"images/icon.svg"
],
"browser_specific_settings": {
"gecko": {
"id": "{bf855ead-d7c3-4c7b-9f88-9a7e75c0efdf}"
}
}
}