Three privacy tools in one: strip photo metadata, remove tracking parameters from URLs, and search privately.
Live: https://notrace.plus (Vercel)
Made by gitpushnico.
I built NoTrace+ because a lot of people (including me) don’t think about the small privacy steps that add up, like hidden photo metadata and tracking parameters in shared links. I wanted a single, simple place to clean both in seconds, and to share practical tips that make privacy feel approachable rather than technical.
NoTrace+ is a small, static, browser-first toolkit:
- Photo Metadata: removes EXIF / metadata from images and exports a clean copy.
- URL Tracking: removes common tracking parameters from URLs (UTM, click IDs, etc.) while preserving meaningful parameters.
- Private Search: opens DuckDuckGo searches in a new tab with privacy-focused settings.
NoTrace+ is designed so you can verify what it does by reading the source.
- NoTrace+ has no backend: it’s a static site (HTML/CSS/JS).
- We don’t receive your files or URLs: photo processing and URL cleaning happen in your browser.
- No analytics / no trackers: no cookies, pixels, or third‑party analytics scripts are included.
Private Search is still a web search engine workflow:
- Your query is sent to DuckDuckGo when you search (that’s unavoidable for any web search).
- DuckDuckGo will also see your IP address (as with any website).
- If you want to hide your IP from the search engine, use Tor Browser or a trusted VPN before searching.
- Photo Metadata: reads the image locally, redraws/exports without metadata, and downloads the cleaned file.
- URL Tracking: parses the URL and removes known tracking keys; non-tracking parameters remain.
- Private Search: creates a DuckDuckGo URL and opens it in a new tab.
This repo is intentionally lightweight:
notrace_plus.html— the main app (single-file HTML + CSS + JS)vercel.json— Vercel routing + security headers404.html— custom 404 pageog.png— link preview image (Open Graph / Twitter)logo.png— site logoicons/— UI icons used inside the appfavicon/— favicon + Apple touch iconrobots.txt/sitemap.xml— basic SEO crawl hints
Just open the file in a browser:
- Double‑click
notrace_plus.html, or - Serve it locally (recommended so fonts load consistently):
python3 -m http.server 5173Then open http://localhost:5173/notrace_plus.html.
One common setup:
- Push this repo to GitHub.
- Import the project in Vercel (Framework preset: Other).
- Set the Build Command to empty and Output Directory to empty (static).
- Add your custom domain
notrace.plusin Vercel → Domains. - Update DNS at your registrar as Vercel instructs.
This project is open source so anyone can inspect the code, verify the privacy claims, and fork/host their own version.
- License: MIT
