cloudatlas
Newbie
- Oct 11, 2015
- 17
- 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: