🏠 Home 

Spiegel DisableHighlights

Disable Highlights on Spiegel Homepage


Install this script?
// ==UserScript==
// @name         Spiegel DisableHighlights
// @namespace    http://tampermonkey.net/
// @version      0.9
// @description  Disable Highlights on Spiegel Homepage
// @author       Phil
// @match        https://www.spiegel.de/
// @grant        none
// ==/UserScript==
(function() {
'use strict';
var badSpans = document.querySelectorAll('div [data-area="block>topic:highlights"]')
badSpans.forEach((s) => {
if(s !== undefined) {
//s.style.backgroundColor = 'rgb(255,0,0)'
s.remove()
}
})
})();