The Blaze - Remove sponsored content

Removes Sponsored Content panels from the main page

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name           The Blaze - Remove sponsored content
// @namespace      edzep.scripts
// @version        1.0.3
// @author         EdZep at HSX
// @description    Removes Sponsored Content panels from the main page
// @include        *theblaze.com
// @include        http://www.theblaze.com*
// @grant          GM_log
// ==/UserScript==

(function() {
    'use strict';
    
    var findSponsorPanels = document.evaluate("//article[@data-feed-type='story' and .//span[@class='feed-author' and contains(.,'Sponsor')]]", document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);

    var panelCount = findSponsorPanels.snapshotLength;
    //GM_log(panelCount);
    for(var i=0; i<panelCount; i++) {
        var target = findSponsorPanels.snapshotItem(i);
        target.parentNode.removeChild(target);
    }
    
})();