ZoomUtils

A bunch of small utilities for Zoom Web Meetings.

当前为 2022-04-19 提交的版本,查看 最新版本

// ==UserScript==
// @name         ZoomUtils
// @namespace    https://letga.me/
// @version      0.2
// @description  A bunch of small utilities for Zoom Web Meetings.
// @author       LetGame
// @license      MIT
// @match        https://zoom.us/*
// @match        https://*.zoom.us/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zoom.us
// @grant        window.close
// ==/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/');
    }

    if (window.location.href.match('zoom.us/wc/leave')) { // auto close ended meetings
        setTimeout(function() {window.close();}, 1000);
    }

    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或关注我们的公众号极客氢云获取最新地址