Greasy Fork is available in English.

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.

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