Default Tamer is designed with privacy as a core principle. All URL routing happens locally on your Mac with no network requests or telemetry.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/0xdps/default-tamer/llms.txt
Use this file to discover all available pages before exploring further.
Privacy-First Design
No Network Requests
Default Tamer never sends data over the network:- No analytics — We don’t track usage or behavior
- No telemetry — No diagnostic data is sent to servers
- No cloud sync — All data stays on your device
- No update checks — Checks for updates only when you explicitly request it
Local Processing Only
All routing decisions are made locally:No Personal Data Storage
Default Tamer stores only:- Your routing rules — The rules you create
- App preferences — Your settings (fallback browser, launch at login)
- Optional activity logs — If enabled, sanitized routing history (see below)
- Usernames or passwords
- Browsing history beyond routing events
- Personal information
- Any data that could identify you
Activity Logging
Activity logging is opt-in and disabled by default. When enabled, it helps diagnose routing issues.What Gets Logged
When activity logging is enabled, Default Tamer records:What Doesn’t Get Logged
- Full URLs with sensitive parameters — Tokens, API keys, and secrets are stripped
- URL fragments — Hash portions are removed
- Form data — POST data is never logged
- Cookies — Not accessed or logged
- Page contents — Only routing metadata is stored
Database Storage
Logs are stored in a local SQLite database: Location:Automatic Cleanup
Old logs are automatically deleted to prevent unbounded storage growth: From source:URL Sanitization
Before storing any URL in activity logs, Default Tamer automatically strips sensitive information.Sensitive Parameters Removed
The following parameter types are automatically removed: From source:Sensitive Paths Stripped
URLs with authentication-related paths are reduced to scheme + host only: From source:Sanitization Examples
Original URL:Original URL:
Original URL:
Sanitization Implementation
Core sanitization logic from source:Enable/Disable Activity Logging
Viewing Activity Logs
When activity logging is enabled, you can view recent routing events:Activity View Columns
- Timestamp — When the link was opened
- URL — Sanitized URL (sensitive params removed)
- Source App — App that triggered the link
- Rule Type — Which type of rule matched (if any)
- Browser — Which browser opened the link
- Fallback — Whether fallback browser was used
- Status — Success or failure
Filtering Logs
You can filter logs by: From source:- Date range — Show only logs from specific time period
- Domain — Show only logs for specific domain
- Browser — Show only logs for specific browser
- Source app — Show only logs from specific app
Data Portability
You own your data. The activity database is a standard SQLite file you can:- Export — Use any SQLite viewer to export logs
- Analyze — Run custom queries for insights
- Delete — Remove the database file to clear all logs
GDPR & Privacy Compliance
Default Tamer is designed to comply with privacy regulations:- No data controller — All data is local; we never possess your data
- No data transmission — Data never leaves your device
- No consent required — We don’t process personal data
- Transparent — Open source code allows full audit
- User control — You can disable logging and delete all data
Trust & Transparency
Default Tamer is open source. You can:- Review the code — All privacy-related code is visible
- Audit URL sanitization — See exactly what gets logged
- Verify no network calls — Confirm no telemetry exists
- Build from source — Compile your own copy for maximum trust
Best Practices
- Keep logging disabled unless troubleshooting routing issues
- Review logs periodically to ensure sanitization is working
- Clear old logs if you no longer need them
- Export your rules (not logs) for backup and sharing
- Verify browser permissions are appropriate for your needs
FAQ
Can Default Tamer see my passwords?
Can Default Tamer see my passwords?
No. Default Tamer only receives the URL of links you click. It cannot access:
- Passwords entered in forms
- Cookies or session tokens
- Page contents after the browser opens
- Auto-fill data or password managers
Are my routing rules private?
Are my routing rules private?
Yes. Routing rules are stored locally on your Mac:They are never transmitted over the network.
What happens if I export my rules?
What happens if I export my rules?
Exporting creates a local file on your Mac. The file contains:
- Rule types (Domain, Source App, URL Pattern)
- Match patterns (domains, apps, URL patterns)
- Target browsers (bundle IDs)
- Activity logs
- Actual URLs you’ve visited
- Personal information
Does Default Tamer track analytics?
Does Default Tamer track analytics?
No. There is zero analytics or telemetry. We have no idea:
- How many people use Default Tamer
- How often you open links
- Which browsers you prefer
- What domains you visit
Can I audit the privacy claims?
Can I audit the privacy claims?
Yes! Default Tamer is open source. You can:
- Read the source code
- Search for network calls (there are none)
- Verify URL sanitization logic
- Build from source if you want maximum trust