您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change your Zoom username in a school Zoom without an account. Set variable "uname" to change it.
// ==UserScript== // @name Zuum // @namespace http://tampermonkey.net/ // @version 0.1 // @description Change your Zoom username in a school Zoom without an account. Set variable "uname" to change it. // @author You // @match https://luther-vic-edu-au.zoom.us/j/* // @icon https://www.google.com/s2/favicons?domain=zoom.us // @run-at document-start // @grant none // ==/UserScript== (function(){ var uname = ''; uname = encodeURI(uname); if (new URLSearchParams(window.location.search).get('uname') != uname && uname != '') { const joinCode = window.location.href.split('?uname=')[0]; window.location.replace(joinCode+'?uname='+uname); } })();