NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name TED // @version 1 // @description Hide readed article // @include https://www.ted.com/* // @include http://www.ted.com/* // @require http://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js // ==/UserScript== $(function() { var myArray = ['why_gun_violence', 'angelica_dass']; for (var i=0; i<myArray.length; i++) { $('a[href*='+myArray[i]+']').closest('.col').hide(); } });