Created
December 9, 2010 10:27
-
-
Save fpauser/734576 to your computer and use it in GitHub Desktop.
Remove annoying crap from news.google.de.
Needs our beloved jQuery ;)
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