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.

As of 2020-04-06. See the latest version.

// ==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
// @grant    none
// @include https://*.zoom.us/j/*
// @namespace https://greasyfork.org/users/22981
// ==/UserScript==

function showWebClientLink() {
  let results = document.getElementsByClassName('webclient')

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

showWebClientLink()