Privacy (the short version)
TL;DR: your files don’t go to the cloud. That’s kind of the whole brand.
We do not receive your files. Merge, compress, convert, OCR — it all runs in your browser. No “upload → process → pinky-promise delete later.” Just local WebAssembly and a refusal to levitate your NDA.
On the ground, not in the cloud means: device memory, not our servers. Close the tab → working copy is gone.
We might count anonymous page views (so we know if anyone likes the jokes). That data is not your PDF.
Two kinds of local engines:
- Core PDF & image tools — our Rust → WebAssembly build (
/pkg/). Small, always same-origin. - Optional engines (OCR / video / Word helpers) — open-source Wasm/JS we host ourselves under
/vendor/(Tesseract, ffmpeg.wasm, mammoth/docx). First use downloads the engine from our site once; your documents still never upload. No third-party CDN for those tools.
Offline cache (optional): a same-origin service worker may store the app shell, core Wasm, and top tools on your device so merge/compress still work without a network. Your documents are never part of that cache — only the site’s own static assets and engines you already fetched. Clear site data in the browser anytime to remove it.
Questions: [email protected] (once the domain is real and caffeinated).