Skip to content

Trust

Privacy Proof

Daily Drift Hub tools are designed to process tool input in the browser. This page explains where that behavior is implemented and how you can verify it directly with your own DevTools.

What “browser-based” means here

Tool state is persisted to browser storage and synchronized to the URL for sharing. Processing logic runs client-side in each tool component. No tool input submission endpoint is used by these tools.

How to verify in your browser

  1. Open any tool page (for example, JSON Formatter or JWT Decoder).
  2. Open DevTools Network tab and clear existing requests.
  3. Paste sample input and run format/decode/convert actions.
  4. Confirm no request includes your input payload. You may still see static asset, analytics, or navigation requests unrelated to tool payload content.

Implementation references

  • Share state and recent tools storage: blog/src/components/ToolStateCoordinator.tsx
  • Persisted tool-local state: blog/src/lib/usePersistedState.ts
  • Tool pages and UI shells: blog/src/app/tools/* and blog/src/components/ToolUi.tsx

Related policies

For legal terms and broader site policy, see Privacy Policy and Terms of Service.