Web Launcher for Zoom

Automatically opens zoom in your browser without waiting for the link

Was ist Web Launcher for Zoom?

Web Launcher for Zoom ist eine Chrome-Erweiterung, die von conceptualspace entwickelt wurde, und ihr Hauptmerkmal ist "Automatically opens zoom in your browser without waiting for the link".

Erweiterungsscreenshots

screenshot

Web Launcher for Zoom-Erweiterungs-CRX-Datei herunterladen

Laden Sie Web Launcher for Zoom-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Web Launcher for Zoom Web Launcher for Zoom
ID dcidmlecjccoeaalkhggkcoaeipagmpo
Offizielle URL https://chromewebstore.google.com/detail/web-launcher-for-zoom/dcidmlecjccoeaalkhggkcoaeipagmpo
Beschreibung Automatically opens zoom in your browser without waiting for the link
Dateigröße 14.48 KB
Installationsanzahl 119
Aktuelle Version 2.0.1
Letztes Update 2022-11-13
Veröffentlichungsdatum 2022-11-08
Entwickler conceptualspace
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/conceptualspace/web-launcher-for-zoom
Hilfeseite URL https://github.com/conceptualspace/web-launcher-for-zoom
URL der Datenschutzrichtlinien-Seite https://conceptualspace.net/privacy.md
Unterstützte Sprachen 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"
    }
}