Skip to content

Instantly share code, notes, and snippets.

@sustained
Last active April 1, 2016 22:03
Show Gist options
  • Save sustained/18170a48a82c33aaf82b292f8565f374 to your computer and use it in GitHub Desktop.
Save sustained/18170a48a82c33aaf82b292f8565f374 to your computer and use it in GitHub Desktop.
setInterval(function(){
$( ".robin-message--message" ).each(function() {
var val = $( this ).html();
if ( val.indexOf('voted to') !== -1 || val.indexOf('Robin Autovoter') !== -1 || val.indexOf('Mins remaining') !== -1 || val.indexOf('zalgo') !== -1 || val.indexOf('Robin-Grow') !== -1 || val.indexOf('Ỏ̷͖͈̞̩͎̻̫̫̜͉̠̫͕̭̭̫̫̹̗̹͈̼̠̖͍͚̥͈̮̼͕̠̤̯̻̥̬̗̼̳̤̳̬̪̹͚̞̼̠͕̼̠̦͚̫͔̯̹͉͉̘͎͕̼̣̝͙̱̟̹̩̟̳̦̭͉̮̖̭̣̣̞̙̗̜̺̭̻̥͚͙̝̦̲̱͉͖͉̰̦͎̫̣̼͎͍̠̮͓̹̹͉̤') !== -1 ) {
$( this ).parent().remove();
}
});
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment