Forked from fpauser/remove_crap_from_google_news.js
Created
December 20, 2010 03:18
-
-
Save liwh/747976 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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