//document.write("
click here for 'clean-screen'
"); //document.write(""); if (Cookies.get('hp_removeDecorations') == "1" ) { removeDecorations(); } function removeDecorations() { //https://github.com/js-cookie/js-cookie/tree/latest#readme Cookies.set('hp_removeDecorations', '1'); document.getElementsByClassName('DesktopDefaultPage')[0].style.cssText = 'background-image: none !important'; document.getElementById('removeDecorations').style.display = 'none'; document.getElementById('addDecorations').style.display = 'block'; } function addDecorations() { //https://github.com/js-cookie/js-cookie/tree/latest#readme Cookies.set('hp_removeDecorations', '0'); window.location.reload() }