Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Usuń narożniki, dane kolonii z budynków
- // @author Thing
- // @version 1.0
- // @include *hegira.com.pl/*
- // @match *hegira.com.pl/*
- // @match *hegira.eu/*
- // @include *hegira.eu/*
- // @copyright free
- // ==/UserScript==
- //usuwa narożniki z pola komunikatu
- document
- .getElementById("pole_komunikatu")
- .querySelectorAll('[style*="background-image"]')
- .forEach((x) => x.remove());
- //usuwa narożniki z pola produkcji
- document
- .getElementById("infosys")
- .querySelectorAll('[style*="background-image"]')
- .forEach((x) => x.remove());
- // usuwa dane kolonii z tabeli budynków
- document
- .querySelectorAll('[title="<?php echo Pokaż/ukryj;?>"]')
- .forEach((x) => x.remove());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement