Web Launcher for Zoom
Automatically opens zoom in your browser without waiting for the link
Что такое Web Launcher for Zoom?
Web Launcher for Zoom - это расширение Chrome, разработанное conceptualspace, и его основная функция - "Automatically opens zoom in your browser without waiting for the link".
Снимки экрана расширения
Скачать файл CRX расширения Web Launcher for Zoom
Скачайте файлы расширений Web Launcher for Zoom в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Web Launcher for Zoom |
ID | dcidmlecjccoeaalkhggkcoaeipagmpo |
Официальный URL | https://chromewebstore.google.com/detail/web-launcher-for-zoom/dcidmlecjccoeaalkhggkcoaeipagmpo |
Описание | Automatically opens zoom in your browser without waiting for the link |
Размер файла | 14.48 KB |
Количество установок | 119 |
Текущая Версия | 2.0.1 |
Последнее Обновление | 2022-11-13 |
Дата публикации | 2022-11-08 |
Разработчик | conceptualspace |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/conceptualspace/web-launcher-for-zoom |
URL страницы помощи | https://github.com/conceptualspace/web-launcher-for-zoom |
URL страницы политики конфиденциальности | https://conceptualspace.net/privacy.md |
Поддерживаемые языки | 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" } } |