Zoom in Browser

Open Zoom in Web Client

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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