NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name RGL Snow Remover // @namespace RGL Snow Remover // @description Removes the snow from the Renegade Line Website // @include https://renegadeline.com // @include https://renegadeline.com/* // @version 1 // @author RIC0H // @grant none // @run-at document-start // ==/UserScript== // allow pasting function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } addGlobalStyle('.snowfall-flakes {display:none!important;}' );