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.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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 results = document.getElementsByClassName('webclient')

  results[0].classList.remove('hideme')
}

showWebClientLink()