Inspect and view changes in Zoom.us Always Show "Join From Web" source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Zoom.us Always Show \"Join From Web\"",
"version": "9.0",
"manifest_version": 3,
"description": "Zoom.us likes to make it hard to join a meeting using your browser. This extension makes it easy.",
"homepage_url": "https://github.com/jfeldstein/zoom-always-web",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"permissions": [],
"host_permissions": [
"https://zoom.us/*",
"https://*.zoomgov.com/*",
"https://meet.google.com/*",
"https://*.gotomeet.me/*",
"https://*.gotowebinar.com/*"
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"/images/record.png",
"/images/recimage.png",
"/images/howto.jpg",
"images/down.png",
"images/8.gif"
],
"matches": [
"https://*.zoom.us/*",
"https://zoomgov.com/*",
"https://www.goto.com/*",
"https://*.gotowebinar.com/*",
"*://meet.google.com/*"
]
}
],
"content_scripts": [
{
"matches": [
"https://*.zoom.us/*",
"https://zoomgov.com/*",
"https://www.goto.com/*",
"https://*.gotowebinar.com/*",
"*://meet.google.com/*"
],
"js": [
"content.js"
],
"css": [
"join.css",
"styles.css"
]
}
]
}