/* STEP 1 TEST — paste this into PAGE > SCRIPTS tab, save, and view the page. If scripts are working, a green banner will appear for 5 seconds. */ var b=document.createElement('div'); b.textContent='Scripts are working on this page'; b.style.cssText='position:fixed;top:70px;right:20px;background:#16a34a;color:#fff;padding:10px 18px;border-radius:8px;font-size:14px;z-index:99999;font-family:sans-serif;box-shadow:0 2px 8px rgba(0,0,0,.2)'; document.body.appendChild(b); setTimeout(function(){b.remove();},6000);