Web Launcher for Zoom
Automatically opens zoom in your browser without waiting for the link
Co to jest Web Launcher for Zoom?
Web Launcher for Zoom to rozszerzenie Chrome opracowane przez conceptualspace, a jego główną funkcją jest „Automatically opens zoom in your browser without waiting for the link”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Web Launcher for Zoom
Pobierz pliki rozszerzeń Web Launcher for Zoom w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Web Launcher for Zoom |
ID | dcidmlecjccoeaalkhggkcoaeipagmpo |
Oficjalny URL | https://chromewebstore.google.com/detail/web-launcher-for-zoom/dcidmlecjccoeaalkhggkcoaeipagmpo |
Opis | Automatically opens zoom in your browser without waiting for the link |
Rozmiar pliku | 14.48 KB |
Liczba instalacji | 119 |
Aktualna Wersja | 2.0.1 |
Ostatnia Aktualizacja | 2022-11-13 |
Data Publikacji | 2022-11-08 |
Deweloper | conceptualspace |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/conceptualspace/web-launcher-for-zoom |
Adres URL Strony Pomocy | https://github.com/conceptualspace/web-launcher-for-zoom |
Adres URL Strony Polityki Prywatności | https://conceptualspace.net/privacy.md |
Obsługiwane Języki | 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" } } |