Block Your Own Visits
When developing or testing your website, you can prevent Cabin from logging your own visits by setting a simple browser flag. This keeps your analytics data clean and focused on real user behavior.
How to Block Your Visits
Open your browser's Developer Console:
Browser macOS Windows Chrome, Arc, Safari, Brave, Opera ⌘+⌥+I Ctrl+Shift+I Firefox, Edge ⌘+Shift+J Ctrl+Shift+J Enter this command in the Console and press Enter:
jscabin.blockMe(true)
This setting persists in your browser's Local Storage, so you only need to set it once per device/browser.
Re-enabling Your Visits
When you want Cabin to resume tracking your visits, you can either:
- Clear your browser's Local Storage, or
- Run this command in the Console:js
cabin.blockMe(false)
This feature helps maintain the accuracy of your analytics while respecting privacy principles.