Advertisement
Guest User

Untitled

a guest
Sep 12th, 2015
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Spam domeny
  3. // @namespace   wypok_hilight_spam
  4. // @include     http://www.wykop.pl/wykopalisko/*
  5. // @version     1
  6. // @grant       none
  7. // ==/UserScript==
  8.  
  9.  
  10. [].forEach.call($('.article a[title="Otwórz źródło znaleziska"]'), function(el){
  11.   var domain = el.textContent.trim();
  12.   if ((domain === 'conowego.pl' || domain === 'whatnext.pl' || domain === 'poradnikinwestowania.pl') && $(el).parents('.article').find('.diggbox.digout').length === 0) {
  13.     $(el).parents('.article').addClass('type-light-warning')
  14.   }
  15. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement