Web Launcher for Zoom

Automatically opens zoom in your browser without waiting for the link

O que é Web Launcher for Zoom?

Web Launcher for Zoom é uma extensão do Chrome desenvolvida por conceptualspace, e sua principal característica é "Automatically opens zoom in your browser without waiting for the link".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Web Launcher for Zoom

Baixe arquivos de extensão Web Launcher for Zoom no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Web Launcher for Zoom Web Launcher for Zoom
ID dcidmlecjccoeaalkhggkcoaeipagmpo
URL Oficial https://chromewebstore.google.com/detail/web-launcher-for-zoom/dcidmlecjccoeaalkhggkcoaeipagmpo
Descrição Automatically opens zoom in your browser without waiting for the link
Tamanho do Arquivo 14.48 KB
Contagem de Instalações 119
Versão Atual 2.0.1
Última Atualização 2022-11-13
Data de Publicação 2022-11-08
Desenvolvedor conceptualspace
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/conceptualspace/web-launcher-for-zoom
URL da Página de Ajuda https://github.com/conceptualspace/web-launcher-for-zoom
URL da Página de Política de Privacidade https://conceptualspace.net/privacy.md
Idiomas Suportados 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"
    }
}