您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
this extencion is for delete borders and diferent clients sharing screen
// ==UserScript== // @name meet.google.com.not-fukink-borders-on-share-screen // @namespace Violentmonkey Scripts // @match https://*.meet.google.com/* // @grant none // @version 1.0 // @author theevil24a // @description this extencion is for delete borders and diferent clients sharing screen // @compatible firefox >=52 // @compatible chrome >=55 // @license MIT // ==/UserScript== ;(function () { let button = document.createElement('button') button.innerText = '{=}' button.id = "moneyscript" button.style = "position: fixed;top: 0;left: 0;z-index: 99999;" document.querySelector("body").appendChild(button) document.querySelector("#moneyscript").addEventListener("click", (event) => { event.preventDefault() for(let key of document.querySelectorAll("[data-allocation-index]")){ param = key.getAttribute("data-allocation-index") if (param != 0){ document.querySelector(`[data-allocation-index="${param}"]`).remove() } } document.body.style.zoom=1.0;this.blur(); }, false); })()
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址