Web Launcher for Zoom

Automatically opens zoom in your browser without waiting for the link

Hvad er Web Launcher for Zoom?

Web Launcher for Zoom er en Chrome-udvidelse udviklet af conceptualspace, og dens hovedfunktion er "Automatically opens zoom in your browser without waiting for the link".

Udvidelsesskærmbilleder

screenshot

Download Web Launcher for Zoom-udvidelses-CRX-fil

Download Web Launcher for Zoom-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Web Launcher for Zoom Web Launcher for Zoom
ID dcidmlecjccoeaalkhggkcoaeipagmpo
Officiel URL https://chromewebstore.google.com/detail/web-launcher-for-zoom/dcidmlecjccoeaalkhggkcoaeipagmpo
Beskrivelse Automatically opens zoom in your browser without waiting for the link
Filstørrelse 14.48 KB
Antal Installationer 119
Nuværende Version 2.0.1
Senest Opdateret 2022-11-13
Udgivelsesdato 2022-11-08
Udvikler conceptualspace
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/conceptualspace/web-launcher-for-zoom
Hjælpeside-URL https://github.com/conceptualspace/web-launcher-for-zoom
URL til Fortrolighedspolitik Side https://conceptualspace.net/privacy.md
Understøttede Sprog 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"
    }
}