A surprising number of "PDF combiner" tools advertise themselves as private but still require uploading every file to a server. If your documents are sensitive, the only honest option is a tool that runs locally. Here is how a Chrome extension does it without ever opening a network connection.
No Upload, No Network, No Trust Needed
PDF Merge & Split runs entirely in your browser. No account, no upload, no watermark.
Add to Chrome, FreeWhat "no upload" really means
A genuine no-upload tool meets three criteria:
- The tool can do the merge with the network disabled.
- You can see in your browser's network panel that no requests carry your file.
- The tool's permission scope does not include "send data to a server".
Most "private" online tools fail at least one of these. Local-only tools pass all three by design.
How the extension stays local
The extension is a static bundle of HTML, JavaScript, and a PDF library. When you drop a file in, the browser reads it into RAM via the standard File API. The merge runs in JavaScript on that in-memory data, then writes the result back to disk via a normal browser download. At no point does the extension open a fetch or XHR with file content as the body.
You can verify by disconnecting from the internet and merging anyway, the merge still completes.
The corporate-firewall use case
Locked-down corporate environments often block uploads to PDF tools as a DLP (data loss prevention) policy. A local extension is one of the few tools that still works because it never tries to upload.
Caveat: some enterprises restrict extension installs as well. If your IT team blocks extensions from the public Chrome Web Store, ask them to whitelist this one or to publish it via your internal admin console. The privacy story is the same either way.
Comparing local options
If "no upload" is the requirement, your realistic choices are:
- Chrome extension, easiest, works on any OS, no install needed beyond the extension.
- macOS Preview, built into Mac, no install. Mac-only.
- LibreOffice Draw, free, runs locally, but heavier and slower for combine-only workflows.
- qpdf command line, fastest for batch automation, requires terminal comfort.
- Adobe Acrobat, fully local but $14.99/month.
When you can not avoid an upload
If your need is conversion (PDF to Word, OCR in 20 languages, e-signing), local options are limited. In those cases either accept the upload trade-off or run a desktop app that converts locally.
How to Combine PDFs Without Uploading, Tools Compared
| Tool | Truly local | Works offline | Upload visible | Cost |
|---|---|---|---|---|
| PDF Merge & Split (extension) | Yes | Yes | No | Free |
| iLovePDF (web) | No | No | Yes | Free tier |
| Smallpdf (web) | No | No | Yes | Free tier |
| macOS Preview | Yes | Yes | No | Built-in |
| Adobe Acrobat | Yes | Yes | No | $14.99/mo |
Get It Done in Under a Minute
Install the free Chrome extension and process your PDFs locally. Works on Windows, Mac, Linux, and Chromebook.
Add PDF Merge & Split to ChromeRelated Guides
- Merge Confidential PDFs Privately
- PDF Merger That Works Offline
- PDF Merge Chrome Extension
- PDF Merger With No Email or Signup
Frequently Asked Questions
How can I verify nothing is being uploaded?
Open Chrome DevTools, go to the Network panel, then perform a merge. You will see no outgoing requests carrying your PDF data. You can also disconnect from the internet entirely and merge anyway, the result is the same.
Is the extension safe for HIPAA or GDPR documents?
It does not transmit your file, which is the relevant property for most data-residency rules. Always check your organization's specific compliance policy with someone qualified before relying on any tool, but the extension does not introduce a transfer step.
What about telemetry?
The extension can send anonymous install and usage counts (no file content, no file names, no user identifiers) for product improvement. You can opt out in the settings panel.
Does this work in incognito mode?
Yes, if you allow the extension in incognito (chrome://extensions, find PDF Merge & Split, enable "Allow in incognito"). Behavior is identical.
Can my employer see what I merge?
Not from the extension itself. If they monitor your machine via endpoint software, that is a separate matter outside any browser tool's control.