// ==UserScript== // @name Green Outline Widgedts NI // @version 1.0 // @description CUSTOM BATTLE by ©Kylar // @author dc: kylaryt // @match https://*.margonem.pl // @grant none // ==/UserScript== (function() { 'use strict'; if (getCookie('interface') === 'ni'){ $(`<style> .layer.interface-layer .positioner.top .hud-container .hero-data .heroname { color: #ffee92; height: 25px; } .widget-button.green::before { box-shadow: 0 0 9px 13px rgb(131 219 22 / 65%); } .widget-button::after { box-shadow: 0 2px 0 1px #0c0d0d; } </style>`).appendTo('body'); } })();