🏠 Home 

Always Show Zoom Web Client

Always show the web client link on zoom.us meeting join pages, even if the host has asked Zoom to hide it by default.


Install this script?
// ==UserScript==
// @name     Always Show Zoom Web Client
// @description Always show the web client link on zoom.us meeting join pages, even if the host has asked Zoom to hide it by default.
// @version  1.1
// @grant    none
// @include https://zoom.us/j/*
// @include https://*.zoom.us/j/*
// @include https://zoom.us/s/*
// @include https://*.zoom.us/s/*
// @namespace https://greasyfork.org/users/22981
// ==/UserScript==
function showWebClientLink() {
let r###lts = document.getElementsByClassName('webclient')
r###lts[0].classList.remove('hideme')
}
showWebClientLink()