您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove distractions from Rush Team
当前为
// ==UserScript== // @name Rush Team Bypass // @namespace s_ambigious // @version 2024-01-26 // @description Remove distractions from Rush Team // @author @ambigious // @match https://www.gaming-style.com/RushTeam/index.php?page=Game // @icon https://www.google.com/s2/favicons?sz=64&domain=gaming-style.com // @grant none // @license MIT // ==/UserScript== window.addEventListener("load", () => { const el = Object.assign(document.createElement("iframe"), { src: "https://www.gaming-style.com/RushTeam/RushTeamWebGL/index.php", frameBorder: "0", scrolling: "no", allowFullscreen: "true", }); Object.assign(el.style, { width: "100vw", height: "100vh" }); document.body.replaceChildren(el); document.body.style.overflow = "hidden"; });