a thoughtful web.
Good ideas and conversation. No ads, no tracking.   Login or Take a Tour!
comment by user-inactivated
user-inactivated  ·  4405 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';}}}})();





forwardslash  ·  4405 days ago  ·  link  ·  

Not sure if it'll work as a bookmarklet, but I'll look into making some sort of options to toggle which functionality you want.