Bettermod Dorgathon [NI]

Ramki

  1. // ==UserScript==
  2. // @name Bettermod Dorgathon [NI]
  3. // @author Dawid
  4. // @match https://*.margonem.pl
  5. // @match *://*.margonem.com/*
  6. // @grant none
  7. // @description Ramki
  8. // @version 0.0.1.20241006145739
  9. // @namespace https://greasyfork.org/users/1377504
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. if (getCookie('interface') === 'ni'){
  15. $(`<style>
  16.  
  17.  
  18. /* NADPISANIE DOMYŚLNYCH RAMEK */
  19.  
  20. .bottomItem .highlight.h-exist,.bottomItem .icon.h-exist,.item .highlight.h-exist,.item .icon.h-exist{
  21. background: url(UsuwamDomyślneRamki.pl);
  22. }
  23.  
  24.  
  25. /* RAMKI */
  26.  
  27. .highlight.t-upgraded{
  28. box-shadow: inset 0 0 5px 3px yellow;
  29. }
  30.  
  31. .highlight.t-uniupg{
  32.  
  33. box-shadow: inset 0 0 5px 3px orange;
  34. }
  35.  
  36.  
  37. .highlight.t-her{
  38.  
  39. box-shadow: inset 0 0 5px 3px #2090FE;
  40. }
  41.  
  42.  
  43. .highlight.t-leg{
  44.  
  45. box-shadow: inset 0 0 5px 3px #808;
  46. }
  47.  
  48.  
  49. </style>`).appendTo('body');
  50. }
  51. preload();
  52. })();
  53.