// ==UserScript== // @name transparent hat shop + slightly modification // @namespace https://greasyfork.org/en/users/752105-w4it // @version v1 // @description the hat menu will be transperent. Not fully tranparent but you can see trough it better! // @author W4IT // @match *://*.sploop.io/* // @grant none // @downloadURL none // ==/UserScript== document.getElementById("hat-menu").style.background = "rgba(0,0,0,0)"; document.getElementById("hat-menu").style.border = "none"; document.getElementById("hat-menu").style.padding = "5px"; document.getElementById("hat-menu").style.opacity = "0.7"; document.getElementById("hat_menu_content").style.background = "rgba(0,0,0,0)"