Hide Ovh from Delta Agar.io

Remove Ovh bot overlayment from Delta Agario

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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