Privacy & Compliance

Palace Tracker is designed with privacy in mind.

No Cookies

Palace Tracker does not use cookies or any form of persistent storage to track users. Each visit is independent, and no cross-session tracking occurs.

Data Collected

The tracker collects the following information:

  • URL - The page being visited (can be configured to exclude query params/hash)
  • Referrer - External source of traffic only
  • Browser language - User's language preference
  • Screen resolution - Device screen size
  • User agent - Browser and OS information
  • Event data - Custom data you explicitly track

Data NOT Collected

Palace Tracker does NOT collect:

  • Personal identifiable information (PII)
  • Cookies or persistent identifiers
  • Cross-site tracking data
  • Form input contents
  • Mouse movements or keystrokes

User Control

Users can disable tracking by:

  • Setting localStorage.setItem('palace.disabled', 'true')
  • Using browser extensions that block analytics scripts
  • Disabling JavaScript
// Allow users to opt-out
localStorage.setItem('palace.disabled', 'true');

// Check if user has opted out
if (localStorage.getItem('palace.disabled')) {
  // Tracking is disabled
}

GDPR Compliance

Palace Tracker is designed to be GDPR-compliant by default:

  • No cookies means no cookie consent is required in most jurisdictions
  • No PII is collected by default
  • Users can easily opt-out via localStorage
  • Data collection is transparent and minimal

Note: While the tracker is designed with privacy in mind, you should still review your specific legal requirements and privacy policy.