Web Launcher for Zoom
Automatically opens zoom in your browser without waiting for the link
Cos'è Web Launcher for Zoom?
Web Launcher for Zoom è un'estensione di Chrome sviluppata da conceptualspace, e la sua funzione principale è "Automatically opens zoom in your browser without waiting for the link".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Web Launcher for Zoom
Scarica i file di estensione Web Launcher for Zoom in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension makes life easier for those who do not wish to install the Zoom* App. When joining a meeting, this extension will launch Zoom in the browser automatically without prompting to use the app or forcing the user to click the "Join with Browser" link. This open source extension is in no way affiliated with, endorsed, or sponsored by Zoom. * Zoom and the Zoom logo are trademarks of Zoom Video Communications, Inc.
Informazioni di Base sull'Estensione
Nome | Web Launcher for Zoom |
ID | dcidmlecjccoeaalkhggkcoaeipagmpo |
URL Ufficiale | https://chromewebstore.google.com/detail/web-launcher-for-zoom/dcidmlecjccoeaalkhggkcoaeipagmpo |
Descrizione | Automatically opens zoom in your browser without waiting for the link |
Dimensione del File | 14.48 KB |
Conteggio Installazioni | 119 |
Versione Corrente | 2.0.1 |
Ultimo Aggiornamento | 2022-11-13 |
Data di Pubblicazione | 2022-11-08 |
Sviluppatore | conceptualspace |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/conceptualspace/web-launcher-for-zoom |
URL della Pagina di Aiuto | https://github.com/conceptualspace/web-launcher-for-zoom |
URL della Pagina della Politica sulla Privacy | https://conceptualspace.net/privacy.md |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Web Launcher for Zoom", "description": "Automatically opens zoom in your browser without waiting for the link", "version": "2.0.1", "author": "[email protected]", "host_permissions": [ "*:\/\/*.zoom.us\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.zoom.us\/*" ], "js": [ "arrive.min.js", "content_script.js" ], "all_frames": true, "run_at": "document_idle" } ], "icons": { "128": "img\/icon.png" } } |