transparent hat shop + slightly modification

the hat menu will be transperent. Not fully tranparent but you can see trough it better!

目前为 2022-04-05 提交的版本。查看 最新版本

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