Skip to content

Instantly share code, notes, and snippets.

@kiyoto
Created February 24, 2013 23:32
Show Gist options
  • Select an option

  • Save kiyoto/5026243 to your computer and use it in GitHub Desktop.

Select an option

Save kiyoto/5026243 to your computer and use it in GitHub Desktop.
javascript:(function(d){
var cls, ii, cl, ct = 0;
cls = d.getElementsByClassName('discussion-bubble');
for (ii = 0; ii < cls.length; ii++) {
cl = cls[ii];
if (/IETF/i.test(cl.innerHTML)) {
cl.style.display = 'none';
ct++;
}
}
alert("Congrats! You just removed " + ct + " useless comments!")
})(document); void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment