The Blaze - Remove sponsored content

Removes Sponsored Content panels from the main page

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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