NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Tutsplus // @version 1 // @description Hide readed article // @include https://tutsplus.com/* // @include http://tutsplus.com/* // ==/UserScript== $(function() { var myArray = ['8 Apr 2016']; var time = $('time').length; for (var j=0; j<time; j++) { for (var i=0; i<myArray.length; i++) { if ($('time').eq(j).attr('title') == myArray[i]) { $('time').eq(j).closest('li').css("opacity", "0.1"); } } } });