Zoom in Browser

Open Zoom in Web Client

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Zoom in Browser
// @namespace    https://greasyfork.org/en/users/370665
// @version      1.0
// @description  Open Zoom in Web Client
// @author       Zach Kosove
// @license      MIT
// @match        https://*.zoom.us/j/*
// @match        https://*.zoom.us/s/*
// @icon         https://cdn-icons-png.freepik.com/64/4401/4401470.png
// @run-at       document-start
// @noframes
// @grant        none
// @homepageURL  https://greasyfork.org/scripts/541563
// @supportURL   https://greasyfork.org/scripts/541563/feedback
// @compatible   chrome
// @compatible   firefox
// @compatible   edge
// @compatible   opera
// @compatible   safari
// ==/UserScript==

(() => {
  const { pathname: path, search: params } = location;
  location.replace(`/wc/${path.slice(3)}/${path[1] === 'j' ? "join" : "start"}${params}`);
})();