您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A bunch of small utilities for Zoom Web Meetings.
当前为
// ==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或关注我们的公众号极客氢云获取最新地址