// ==UserScript== // @name Hide Kinja Deals // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match http://lifehacker.com/* // @grant none // @require http://code.jquery.com/jquery-3.1.1.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; $("article:contains('Shared from Deals')").css("display", "none"); })();