// ==UserScript== // @name transparent hat shop // @namespace http://tampermonkey.net/ // @version 0.3 // @description try to take over the world! // @author You // @match https://sploop.io/?game=0 // @match *://*.sploop.io/* // @icon https://www.google.com/s2/favicons?domain=sploop.io // @grant none // @downloadURL none // ==/UserScript== document.getElementById("hat-menu").style.background = "rgba(0,0,0,0)"; (function() {var css = [ ".green-button {", "background-color: rgba(0,0,0,0);", "box-shadow: inset 0 -5px 0 rgba(0,0,0,0);", "}", ".menu .content .menu-item .description {", "font-size: 0px;", "}", ".text-shadowed-3 {", "text-shadow: rgb(0 0 0 / 0%) 3px 0px 0px, rgb(0 0 0 / 0%) 2.83487px 0.981584px 0px, rgb(0 0 0 / 0%) 2.35766px 1.85511px 0px, rgb(0 0 0 / 0%) 1.62091px 2.52441px 0px, rgb(0 0 0 / 0%) 0.705713px 2.91581px 0px, rgb(0 0 0 / 0%) -0.287171px 2.98622px 0px, rgb(0 0 0 / 0%) -1.24844px 2.72789px 0px, rgb(0 0 0 / 0%) -2.07227px 2.16926px 0px, rgb(0 0 0 / 0%) -2.66798px 1.37182px 0px, rgb(0 0 0 / 0%) -2.96998px 0.42336px 0px, rgb(0 0 0 / 0%) -2.94502px -0.571704px 0px, rgb(0 0 0 / 0%) -2.59586px -1.50383px 0px, rgb(0 0 0 / 0%) -1.96093px -2.27041px 0px, rgb(0 0 0 / 0%) -1.11013px -2.78704px 0px, rgb(0 0 0 / 0%) -0.137119px -2.99686px 0px, rgb(0 0 0 / 0%) 0.850987px -2.87677px 0px, rgb(0 0 0 / 0%) 1.74541px -2.43999px 0px, rgb(0 0 0 / 0%) 2.44769px -1.73459px 0px, rgb(0 0 0 / 0%) 2.88051px -0.838247px 0px;", "}", ".scrollbar::-webkit-scrollbar {", "background: ##22251e;", "border-radius: 4px;", "border: 4px solid rgb(0 0 0 / 0%)", "}", ".menu .content .menu-item .menu-pricing .action {", "margin-left: auto;", "outline: none;", "border: 4px solid #FFFFFF;", "padding: 7px;", "font-size: 18px;", "cursor: url(img/ui/cursor-pointer.png) 6 0, pointer;", "margin-top: auto;", "margin-bottom: auto;", "color: #FFFFFF;", "border-radius: 10px;", "}", ".menu .content .menu-item {", "display: flex;", "color: white;", "width: 100%;", "margin-left: auto;", "margin-right: auto;", "margin-top: 0px;", "padding: 0px 10px 3px 10px;", "align-items: center;", "border-bottom: 3px solid rgb(0 0 0 / 0%);", "}", ".subcontent-bg {", "background: rgb(0 0 0 / 0%);", "border-radius: 10px;", "padding: 20px;", "margin: 20px 0 30px 0;", "border: 4px solid rgb(0 0 0 / 0%);", "box-shadow: inset 0 5px 0 rgb(0 0 0 / 0%);", "}" ].join("\n"); if (typeof GM_addStyle != "undefined") { GM_addStyle(css); } else if (typeof PRO_addStyle != "undefined") { PRO_addStyle(css); } else if (typeof addStyle != "undefined") { addStyle(css); } else { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); var heads = document.getElementsByTagName("head"); if (heads.length > 0) { heads[0].appendChild(node); } else { // no head yet, stick it whereever document.documentElement.appendChild(node); } } })();