// ==UserScript== // @name Diep.io Auto Tank Builder/Upgrader // @version 1.4 // @description Streamline your Diep.io gameplay with the ultimate auto tank builder and upgrader, empowering you with optimized builds for strategic dominance. // @author ArslanYT // @match https://diep.io/ // @grant none // @license MIT // @namespace https://greasyfork.org/users/970291 // @downloadURL none // ==/UserScript== (function () { "use strict"; var textG = document.createElement("div"); document.getElementsByTagName("body")[0].appendChild(textG); textG.innerHTML = `

ArslanYT



`; function hide() { var x = document.getElementById("main"); if (x.style.display === "none") { x.style.display = "block"; } else { x.style.display = "none"; } } document.body.onkeyup = function (ep) { if (ep.keyCode === 84) { hide(); } }; })();