Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save liwh/747976 to your computer and use it in GitHub Desktop.
Save liwh/747976 to your computer and use it in GitHub Desktop.
// remove crappy contents from news.google.de
$("div.source, span.source").filter(function() { return /(BILD|WELT ONLINE)/.test( $(this).text() ) }).parent().fadeOut();
$("h2.title > a").filter(function() { return /.*(welt.de|bild.de).*/.test( $(this).attr('href') ) } ).parents("div.story").fadeOut();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment