Advertisement
sliq19882

Untitled

Sep 3rd, 2021
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. kod css:
  2. table.offers--top {
  3. display:none
  4. }
  5.  
  6.  
  7. kod smaromałpka
  8.  
  9.  
  10. // ==UserScript==
  11. // @name wypierdol guwno z olxa
  12. // @version 1
  13. // @grant none
  14. // @match https://*.olx.pl/*
  15. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
  16. // ==/UserScript==
  17.  
  18. var co_schowac = [
  19. 'tbs','udzial','partycyp','odstap','kawalerk','gotowiec'
  20. ];
  21.  
  22.  
  23. function schowaj(co, index) {
  24. let oglo = $('a[href*="' + co + '"]');
  25. oglo.parent().parent().parent().parent().remove();
  26. // oglo.parent().parent().parent().parent().attr('style', 'background-color:red !important');
  27.  
  28.  
  29. }
  30.  
  31. co_schowac.forEach(schowaj);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement