Don't trust us that files stay on your device. Prove it.
Barecopy claims every file is processed in your browser and never uploaded. That's exactly the kind of claim you should check rather than believe. Here are three tests, from easiest to most thorough — each takes under a minute.
Turn off the internet and watch it keep working
- Open barecopy.com and let the page finish loading.
- Switch off Wi-Fi / enable airplane mode — fully disconnect.
- Drop a file on the page and clean it.
Watch every request the page makes
This is the definitive test — it shows you exactly what leaves your browser.
- Open barecopy.com.
- Open Developer Tools:
F12, or right-click → Inspect. Select the Network tab. - Clean a file while the Network tab is recording.
- Inspect the list of requests. You'll see the page's own files (HTML, fonts, scripts) load once — and no request carrying your file's data.
Read the code yourself
Barecopy is a single HTML page with its logic in plain sight — nothing is obfuscated or hidden on a server.
- On barecopy.com, view source:
Ctrl+U(orCmd+Option+Uon Mac). - Search for how files are handled. You'll find the file read into memory with
FileReaderand processed by in-page functions — nofetchor upload of file contents anywhere. - The libraries it uses (for ZIP and PDF generation) are served from Barecopy's own domain under
/vendor/, not a third-party CDN — so the page has no reason to talk to anyone else.
Why we built it this way
Most "remove metadata online" tools ask you to upload the file to their server. That's backwards: you're removing metadata precisely because the file is sensitive, and uploading it to a stranger's machine is the opposite of careful. The only way to be sure a file wasn't kept, logged or leaked is for it never to leave your device in the first place. That's not a policy promise you have to trust — with the tests above, it's a fact you can confirm.