// ==UserScript== // @name Zoom Web Client Auto Redirect // @namespace https://zoom.us // @version 0.1 // @downloadUrl https://gist.github.com/msafadieh/2a58e3ef1c42c2b1e92d3e28a9ade0b7/raw/a4a62a7fc8da9cc8b60a77e792404292776d4660/zoom-web-client-auto-redirect.js // @description Automatically redirect Zoom meetings to the web client // @author Mohamad Safadieh // @license GNU AGPLv3: https://www.gnu.org/licenses/agpl-3.0.en.html // @include /https:\/\/([a-z]+.)?zoom.us\/([sj])\/([0-9]+).*/ // @grant none // ==/UserScript== (function() { const match = window.location.href.match(/https:\/\/([a-z]+.)?zoom.us\/([sj])\/([0-9]+).*/); const prefix = match[1] || ""; const end = match[2] === "j" ? "join/" + match[3] : match[3] + "/start"; window.location.href = "https://" + prefix + "zoom.us/wc/" + end; })();