Advertisement
Trambambaj

Kasowanie obiektów z podglądu

Aug 9th, 2021
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       kasowanie obiektów z widoku
  3. // @version    1.0
  4. // @include    *hegira.com.pl/*
  5. // @copyright  free
  6. // ==/UserScript==
  7. "use strict";
  8. const kasownik = function (a) {
  9.   $(`img[${a}]`).parent().remove();
  10. };
  11. $('button[name="show_g"]')
  12.   ?.parent()
  13.   ?.after(
  14.     '<td><button type ="button" id ="kas_fl" title ="Kasuj ikony flot z podglądu.">KF</button></td>><td><button type ="button" id ="kas_orb_strz" title ="Kasuj ikony budynków orbitalnych i strzałki.">KOS</button></td>'
  15.   );
  16. $("button#kas_fl").click(function () {
  17.   kasownik('name*="przyciskja2"');
  18. });
  19.  
  20. $("button#kas_orb_strz").click(function () {
  21.   kasownik('title*="rbitaln"');
  22.   kasownik('title*="osmiczny"');
  23.   kasownik('title*="UL Zebren"');
  24.   kasownik('src ="img/bud/orbitalna_plat_ob_80px.png"');
  25.   $('img[title*="obiekt jest"]').remove();
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement