您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allows you to leave meets when others are leaving themselves.
// ==UserScript== // @name Google Meet Auto Leave // @namespace http://tampermonkey.net/ // @version 1.0 // @description Allows you to leave meets when others are leaving themselves. // @author SaberSpeed77, l0st_idiot // @match https://meet.google.com/*-* // @icon https://www.mediafire.com/convkey/6b57/sd3demt1u3y6mx19g.jpg // @grant none // @license MIT // ==/UserScript== // Main Feature - Google Meet Auto Leave // IMPORTANT! - If You want this to work when you tab switch, then install the extension "Always active Window - Always Visible". // Click it --> This can read and change site data --> On meet.google.com // Why? Because it will make the meet tab always active (and the default setting makes all your tabs active, which is resource-intensive) window.trustedTypes.createPolicy('default', {createHTML: (string, sink) => string}); let content = document.createElement("div"); content.innerHTML = '\ <div style="z-index: 9999; position: absolute; left: 0; padding-left: 10px; top: 0; height: 50px; width: 460px; background-color: #555555;">\ <p style="color: white; display: inline-block;">How many participants must be left before you leave the meet?</p>\ <input style="width: 30px;" type="text" id="numToLeave">\ </div>\ '; document.body.appendChild(content); var a = setInterval(() => { let numToLeave = parseInt(document.getElementById('numToLeave').value); // change num of participants left when you leave let numOfPart = parseInt(document.querySelector('.uGOf1d').innerHTML); if (numOfPart <= numToLeave) { document.querySelector('[aria-label="Leave call"]').click(); clearInterval(a); } }, 5000); // Extra Features - Mute Mic & Cam var b = setInterval(() => { if (document.querySelector("[data-is-muted='true'][aria-label*='microphone']")) { clearInterval(b); } document.querySelector("[data-is-muted='false'][aria-label*='microphone']").click(); document.querySelector("[aria-label*='Turn off camera (CTRL + E)']").click(); }, 500);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址