formingworship / Remove Stephen A. Smith

// ==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 ();
})();