Zoom in Browser

Open Zoom in Web Client

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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