Exclude your visits from the analytics
To prevent counting your visits, you can set a special localStorage flag in the browser.
To exclude your visits from being counted
Visit the website you'd like to exclude your visits from and open the developer tools in your browser. Right-click anywhere on your page and click Inspect (the wording may vary depending on your web browser) to open the developer tools. Alternatively, press the key F12 on Firefox or Chrome or Option+Command+i on Safari. Then click the Console tab.
Then paste the following command and hit enter:
localStorage.setItem('trackflow_ignore', 'true');
You need to repeat this process for every domain and subdomain you want to exclude your visits from. If you use multiple browsers, you must also follow the same steps on each browser to ensure your visits are not counted.
To re-enable counting of your visits
To re-enable visit tracking, go to the website where you want to resume counting your visits. Open your browser's developer tools, navigate to the Console tab. Then paste the following command and hit enter:
localStorage.removeItem('trackflow_ignore');