Web Launcher for Zoom

Automatically opens zoom in your browser without waiting for the link

Vad är Web Launcher for Zoom?

Web Launcher for Zoom är en Chrome-tillägg utvecklad av conceptualspace, och dess huvudfunktion är "Automatically opens zoom in your browser without waiting for the link".

Tilläggsskärmbilder

screenshot

Ladda ner Web Launcher for Zoom-förlängningens CRX-fil

Ladda ner Web Launcher for Zoom-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Web Launcher for Zoom Web Launcher for Zoom
ID dcidmlecjccoeaalkhggkcoaeipagmpo
Officiell webbadress https://chromewebstore.google.com/detail/web-launcher-for-zoom/dcidmlecjccoeaalkhggkcoaeipagmpo
Beskrivning Automatically opens zoom in your browser without waiting for the link
Filstorlek 14.48 KB
Antal Installationer 119
Aktuell Version 2.0.1
Senast Uppdaterad 2022-11-13
Publiceringsdatum 2022-11-08
Utvecklare conceptualspace
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/conceptualspace/web-launcher-for-zoom
Hjälpsida URL https://github.com/conceptualspace/web-launcher-for-zoom
URL till Sekretesspolicy Sidan https://conceptualspace.net/privacy.md
Stödda Språk 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"
    }
}