ZoomUtils

A bunch of small utilities for Zoom Web Meetings.

目前為 2022-04-19 提交的版本,檢視 最新版本

// ==UserScript==
// @name         ZoomUtils
// @namespace    https://letga.me/
// @version      0.1
// @description  A bunch of small utilities for Zoom Web Meetings.
// @author       let_game
// @license      MIT
// @match        https://zoom.us/*
// @match        https://*.zoom.us/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zoom.us
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if (window.location.href.match('zoom.us/j/')) { // web client redirector
        window.location.href = window.location.href.replace('/j/', '/wc/join/');
    }

    window.addEventListener('load', function() {
        document.querySelector('body').style.fontFamily = "sans-serif"; // fix fonts

        if (window.location.href.match('zoom.us/wc/join/')) { // auto join button press
            setTimeout(function() {
                document.getElementById("joinBtn").click()
            }, 5000)
       }
    })
})();

QingJ © 2025

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