AWBW Power Nerf

Living life from Day-to-Day!

当前为 2024-10-08 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name AWBW Power Nerf
  3. // @namespace https://greasyfork.org/en/users/1062240
  4. // @version 1.0
  5. // @description Living life from Day-to-Day!
  6. // @author Vincent ~ VIH
  7. // @match https://awbw.amarriner.com/*?games_id=*
  8. // @match https://awbw.amarriner.com/*?replays_id=*
  9. // @icon https://cdn.discordapp.com/emojis/1131387035479965817.webp
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. let playerOverviewBarContainers = document.getElementsByClassName('player-overview-bar');
  14. Array.prototype.forEach.call(playerOverviewBarContainers, function(container) {
  15. container.style.display = 'none';
  16. });