NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Sitepoint // @version 1 // @description Hide readed article // @include http://www.sitepoint.com/* // ==/UserScript== $(function() { var myArray = ['']; for (var i=0; i<myArray.length; i++) { $('.article_title a[href*='+myArray[i]+']').closest('li').hide(); $('.article_category_title a[href*=ruby]').closest('li').hide(); $('.article_category_title a[href*=php]').closest('li').hide(); $(".adspot").closest('li').hide(); } });