Skip to content

Instantly share code, notes, and snippets.

@jruz
Last active September 3, 2015 10:18
Show Gist options
  • Save jruz/a4abf8a16f9c09aa70c3 to your computer and use it in GitHub Desktop.
Save jruz/a4abf8a16f9c09aa70c3 to your computer and use it in GitHub Desktop.
Hide reddit .gifv posts
javascript:void%20function(){$(%22.thing%20a.title%22).each(function(){/\.gifv/.test(this.href)%26%26$(this).closest(%22.thing%22).remove()})}();
$('.thing a.title').each(function(){
if(/\.gifv/.test(this.href)) {
$(this).closest('.thing').remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment