NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Remove Stephen A. Smith // @namespace http://tampermonkey.net/ // @version 0.1 // @description Removes any articles from ESPN's feed with Stephen A. Smith in them. // @author You // @match http://www.espn.com/ // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... var badDivs = $("article div:contains('Stephen A.')"); badDivs.parent ().parent ().remove (); })();