Zoom redirect to web client

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

当前为 2022-02-14 提交的版本,查看 最新版本

// ==UserScript==
// @name        Zoom redirect to web client
// @namespace   Violentmonkey Scripts
// @include     /https:\/\/(.*\.)?zoom.us\/j\/\d+/
// @version     1.0.0
// @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+)/ )
  document.location = `${ origin }/wc/join/${ meetingID }${ search }`;
})();

QingJ © 2025

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