您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Transparently redirects any meeting links to use Zoom's browser based web client
// ==UserScript== // @name Zoom redirector with Subdomains // @match https://zoom.us/* // @match https://*.zoom.us/* // @version 1.0 // @author clemente, Adam Novak // @license MIT // @description Transparently redirects any meeting links to use Zoom's browser based web client // @icon https://i.imgur.com/y8BXA8l.png // @inject-into content // @run-at document-start // @noframes // @namespace https://greasyfork.org/users/22981 // ==/UserScript== const url = new URL(document.URL); const match = /^\/[js]\/(\d+)\/?$/.exec(url.pathname); if (match === undefined || match === null || match[1] === undefined) { return; } const urlEnding = match[0][1]; const meetingId = match[1]; const mapping = {'j': '/join', 's': '/start'}; document.location.pathname = '/wc/' + encodeURIComponent(meetingId) + mapping[urlEnding];