Advertisement
Trambambaj

Usuń narożniki

Aug 25th, 2024 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       Usuń narożniki, dane kolonii z budynków
  3. // @author     Thing
  4. // @version    1.0
  5. // @include    *hegira.com.pl/*
  6. // @match      *hegira.com.pl/*
  7. // @match      *hegira.eu/*
  8. // @include    *hegira.eu/*
  9. // @copyright  free
  10. // ==/UserScript==
  11. //usuwa narożniki z pola komunikatu
  12. document
  13.   .getElementById("pole_komunikatu")
  14.   .querySelectorAll('[style*="background-image"]')
  15.   .forEach((x) => x.remove());
  16. //usuwa narożniki z pola produkcji
  17. document
  18.   .getElementById("infosys")
  19.   .querySelectorAll('[style*="background-image"]')
  20.   .forEach((x) => x.remove());
  21. // usuwa dane kolonii z tabeli budynków
  22. document
  23.   .querySelectorAll('[title="<?php echo  Pokaż/ukryj;?>"]')
  24.   .forEach((x) => x.remove());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement