AWBW Power Nerf

Living life from Day-to-Day!

目前為 2024-10-08 提交的版本,檢視 最新版本

// ==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';
});