Facebook
From Ditch, 1 Month ago, written in JavaScript.
Embed
Download Paste or View Raw
Hits: 129
  1. // ==UserScript==
  2. // @name         Green Outline Widgedts NI
  3. // @version      1.0
  4. // @description  CUSTOM BATTLE by ©Kylar
  5. // @author       dc: kylaryt
  6. // @match        https://*.margonem.pl
  7. // @grant        none
  8. // ==/UserScript==
  9.  
  10. (function() {
  11.     'use strict';
  12. if (getCookie('interface') === 'ni'){
  13.     $(`<style>
  14. .layer.interface-layer .positioner.top .hud-container .hero-data .heroname {
  15. color: #ffee92;
  16. height: 25px; }
  17.  
  18. .widget-button.green::before {
  19. box-shadow: 0 0 9px 13px rgb(131 219 22 / 65%);
  20. }
  21.  
  22. .widget-button::after {
  23. box-shadow: 0 2px 0 1px #0c0d0d;
  24. }
  25.  
  26. </style>`).appendTo('body');
  27. }
  28. })();