NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Remove MyBroadband partner content // @description Removes all "partner content" from mybroadband // @namespace http://tampermonkey.net/ // @version 0.5 // @author Spooky User // @match *://mybroadband.co.za/* // @grant none // @updateURL https://gist.githubusercontent.com/spookyUnknownUser/724b0bb4017ae8f0704efcc20bbca96d/raw // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js // ==/UserScript== (function() { 'use strict'; $('.feed_article').each( function() { if($(this).find('.presented-title').length){ $(this).remove(); } }); })();