Zoom redirect to web client

2/14/2022, 2:21:23 PM

目前為 2022-02-14 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Zoom redirect to web client
// @namespace   https://github.dev/jblz/user-script-zoom-webclient
// @include     /https:\/\/(.*\.)?zoom.us\/j\/\d+/
// @version     1.0.1
// @author      jblz
// @description 2/14/2022, 2:21:23 PM
// @license     gpl-3.0
// ==/UserScript==

/* jshint esversion: 6 */

(function () {
	const { origin, pathname, search } = document.location;
	const [_, meetingID] = pathname.match(/^\/j\/(\d+)/i)
	document.location.pathname = `/wc/join/${ encodeURIComponent( meetingID ) }${search}`;
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址