Living life from Day-to-Day!
当前为
// ==UserScript==
// @name AWBW Power Nerf
// @namespace https://greasyfork.org/en/users/1062240
// @version 1.0
// @description Living life from Day-to-Day!
// @author Vincent ~ VIH
// @match https://awbw.amarriner.com/*?games_id=*
// @match https://awbw.amarriner.com/*?replays_id=*
// @icon https://cdn.discordapp.com/emojis/1131387035479965817.webp
// @license MIT
// ==/UserScript==
let playerOverviewBarContainers = document.getElementsByClassName('player-overview-bar');
Array.prototype.forEach.call(playerOverviewBarContainers, function(container) {
container.style.display = 'none';
});