NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Vaskadama til h-a.no // @namespace http://tampermonkey.net/ // @version 0.1 // @description Clear out nag screen on h-a.no // @author Ketil Nordstad // @match *://www.h-a.no/* // @grant none // @run-at document-idle // ==/UserScript== (function() { 'use strict'; document.getElementsByClassName("salePoster")[0].parentNode.removeChild(document.getElementsByClassName("salePoster")[0]); document.getElementsByClassName("articleFadeout")[0].className="ittno"; })();