Hide Ovh from Delta Agar.io

Remove Ovh bot overlayment from Delta Agario

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

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