Privacy Mode
Cookieless Tracking. Zero Storage. Full Compliance.
For founders who want analytics without touching the visitor's browser storage at all. No cookies, no localStorage, no sessionStorage. Just pageviews and aggregate numbers.
How It Works.
Add data-cookielessto your script tag. That's it. The tracking script will:
- Never read or write localStorage.
- Never read or write sessionStorage.
- Never set any cookies.
- Generate an ephemeral visitor ID from the date + user-agent hash that rotates roughly every 24 hours.
- Skip pseudonymous visitor names entirely.
- Still track pageviews, scroll depth, clicks, duration, sources, countries, devices — all the core analytics.
The Tradeoffs.
More private, but a few things change:
- ~Visitor IDs rotate roughly every 24 hours. Multi-day returning-visitor counts are approximations.
- ~No visitor Journeys tab — sessions can't be linked across visits without persistent IDs.
- ~No pseudonymous nicknames (Happy Otter, etc.) — those require localStorage.
- ~Revenue attribution via DataFast may be weaker since the visitor ID rotates.
- ~Entry/exit page tracking is limited to within a single page load.
Install.
Replace your existing script tag with this one:
<script src="https://www.onelive.page/track.js"
data-app="YOUR_APP_ID" data-cookieless defer></script>The only difference is data-cookieless. Everything else stays the same.