like4like bot catcher

cloudatlas

Newbie
Joined
Oct 11, 2015
Messages
17
Reaction score
2
[EDIT] With greasemonkey plugin. My guide could have been a little better. Just change the !!!like4like domain!!! with what it actually is and removed the spaces.

Code:
$('a').each(function () {
  if ($(this).css('background-image') == 'url(" !!!like4like domain!!! /img/icon/earn-youtube-antibot.png")' || 
      $(this).css('background-image') == 'url(" !!!like4like domain!!! /img/icon/earn-facebook-like-antibot.png")' || 
      $(this).css('background-image') == 'url(" !!!like4like domain!!! /img/icon/earn-twitter-antibot.png")' || 
      $(this).css('background-image') == 'url(" !!!like4like domain!!! /img/icon/earn-google-circles-435912.png")' ) {
    $(this).parent().parent().parent().parent().remove();
  }
});
 
Last edited:
Interesting. I already have one, but thanks

Now we need a daily bonus skipper :)
 
Back
Top