(function(){ const userData = { page: window.location.href, timeStart: Date.now(), clicks: 0, scrollDepth: 0 }; document.addEventListener("click", () => userData.clicks++); window.addEventListener("scroll", () => { userData.scrollDepth = Math.max( userData.scrollDepth, Math.round((window.scrollY / document.body.scrollHeight) * 100) ); });...