Good ideas and conversation. No ads, no tracking. Login or Take a Tour!
user-inactivated · 4401 days ago · link · · parent · post: Greasemonkey script for removing ignored posts
Thanks! I would rather not remove red comments, only posts. Could that work as a bookmarklet instead of Greasemonkey? javascript:(function(){var%20posts=document.getElementsByClassName('box');if(posts.length>0){for(var%20i=0;i<posts.length;i){var%20ignored=posts[i].innerHTML.search('a90101\">');if(ignored>=0){posts[i].style.display='none';}}}})();