Greasy Fork

Greasy Fork is available in English.

Purge Huffington Post from Yahoo News feed

Eliminates Huffington Post Entries from Yahoo News list. Will run through iterative cycles to continue cleaning up the page as more are loaded.

目前为 2014-09-30 提交的版本,查看 最新版本

// ==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
// ==/UserScript==

window.setInterval(function() { $("span.source:contains('Huffington Post')").parent().parent().parent().parent().remove(); }, 1000);