您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove Ovh bot overlayment from Delta Agario
// ==UserScript== // @name Hide Ovh from Delta Agar.io // @namespace Delta Agar.io // @version 0.1 // @description Remove Ovh bot overlayment from Delta Agario // @author New Jack 🕹️ // @match *://agar.io/* // @icon https://i.imgur.com/wnEFdAR.jpeg // @grant none // @license MIT // ==/UserScript== window.setTimeout(function() { // Create a new button element const toggleButton = document.createElement("button"); toggleButton.id = "toggle-muzza-gui"; toggleButton.textContent = "🕹️ Toggle Ovh Elements"; toggleButton.style.marginTop = "10px"; // Optional: Add some margin to the button // Append the button to the container with the class "fcols grow hinherit" const container = document.querySelector(".fcols.grow.hinherit"); if (container) { container.appendChild(toggleButton); } else { console.error("Container element not found"); } // Add a click event listener to the button toggleButton.addEventListener("click", function() { const muzzaGuiElements = document.getElementsByClassName("muzza-gui"); for (let i = 0; i < muzzaGuiElements.length; i++) { if (muzzaGuiElements[i].style.display === "none") { muzzaGuiElements[i].style.display = "block"; } else { muzzaGuiElements[i].style.display = "none"; } } }); }, 5000); // delay in milliseconds
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址