// ==UserScript== // @name Dagbladet noblink // @namespace snake66 // @description Remove annoying blinking backgrounds and animated marquees at dagbladet.no. // @include https://*.dagbladet.no/* // @include https://*.dinside.no/* // @version 1 // @grant none // ==/UserScript== let blink_classes = ['breaking--just-now', 'breaking--pulse-background', 'breaking--pulse-kicker'] for (let cls of blink_classes) { for (let blinker of document.getElementsByClassName(cls)) { //console.log("Disabling marquee on " + blinker.nodeName + " - " + blinker.nodeId) blinker.classList.remove(cls) } }