// ==UserScript== // @name Purge Huffington Post from Yahoo News feed // @version 1.0 // @namespace edward // @author Edward // @description Eliminates Huffington Post Entries from Yahoo News list. Will run through iterative cycles to continue cleaning up the page as more are loaded. // @include http*://*.yahoo.*/* //@require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js // @downloadURL none // ==/UserScript== window.setInterval(function() { $("span.source:contains('Huffington Post')").parent().parent().parent().parent().remove(); }, 1000);