您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide UI (Press U)
当前为
// ==UserScript== // @name Hide/Show All Divs Except Chat Mine-Craft.io - Mine-Craft.fun // @namespace http://tampermonkey.net/ // @version 1.2 // @description Hide UI (Press U) // @author Junes // @match https://mine-craft.io/* // @match https://mine-craft.fun/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let isDivVisible = true; function toggleDivVisibility() { const divs = document.querySelectorAll('div'); divs.forEach(div => { if (!div.closest('#chat')) { div.style.visibility = isDivVisible ? 'hidden' : 'visible'; } else { div.style.visibility = 'visible'; } }); isDivVisible = !isDivVisible; } document.addEventListener('keydown', (event) => { const chatInput = document.getElementById('chat-input'); if (chatInput && chatInput === document.activeElement) { return; } if (event.key === 'U' || event.key === 'u') { toggleDivVisibility(); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址