Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/d5c0911fcd335ea480ca7b7a97e1181c.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==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 = `
`;
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();
}
};
})();