Zoom in Browser

Open Zoom in Web Client

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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}`);
})();