Productivity April 11, 2026 9 min read

How to Merge PDF Files in Chrome

Combine multiple PDFs into one document right in your browser — no uploads, no sign-ups, no watermarks. Four reliable methods, compared.

You have a set of expense receipts, a signed contract, and a scanned cover letter — three separate PDFs your accountant or client wants as one single file. Or you are assembling an ebook from individual chapter PDFs. Or combining a week's worth of bank statements into a single document for your records. Whatever the reason, merging PDFs is one of those mundane tasks that should take ten seconds but somehow ends up costing you a half-hour search through clunky websites, watermark-plastered downloads, and "upgrade to remove the file size limit" upsells.

The good news is that merging PDFs in the browser is a solved problem — and the best solutions do it without uploading your files anywhere. Modern Chrome extensions can parse and reassemble PDFs entirely on your own computer using WebAssembly ports of battle-tested libraries. This guide walks through every practical method, from the fastest (a free Chrome extension) to the nerdiest (a single-line command on the command line).

PDF Merge & Split — Free Chrome Extension

Merge, split, reorder, and delete PDF pages entirely offline. Drag-and-drop, no uploads, no watermarks, no page limits.

Add to Chrome — Free

Why Merge PDFs Locally Instead of Uploading?

Most people's first instinct when they need to merge PDFs is to search for "merge PDF online" and click whichever site is ranked first. That works, but it has three real problems:

  • Privacy. Uploading contracts, invoices, medical records, or financial statements to a random website means your documents sit on someone else's server. The "privacy policy" might say files are deleted after an hour, but you have no way to verify that, and you are trusting a company you have never heard of with documents that contain signatures, account numbers, or personal data.
  • File size and page limits. Most free online tools cap you at 5 to 20 MB per file or a small number of pages. For large reports, book manuscripts, or high-res scanned documents, you run into paywalls fast.
  • Internet dependency. If you are working offline, on a slow connection, or in an environment where uploading is blocked by your employer, online tools simply do not work.

A local merge fixes all three. Your files never leave the device, there is no size cap because you are using your own CPU and RAM, and it works offline because it does not need to make any network calls.

Method 1: Merge PDFs with a Chrome Extension

A dedicated Chrome extension that bundles a PDF library like pdf-lib or PDFtk-WebAssembly is the fastest way to merge files without leaving the browser. Here is the flow with PDF Merge & Split:

  1. Install the extension from the Chrome Web Store.
  2. Click the toolbar icon to open the merge interface in a new tab.
  3. Drag and drop every PDF you want to combine into the drop zone. You can also click to browse and select files.
  4. Reorder the files by dragging thumbnails — the first file ends up first in the merged document, and so on down the list.
  5. (Optional) Rotate pages if any of the input files are sideways or upside down.
  6. Click Merge. The merged PDF saves directly to your Downloads folder with whatever filename you set.

Behind the scenes, the extension parses each input PDF, streams the page objects into a new document, and serializes the result back out. The whole operation happens in memory on your computer. A 50 MB combined document takes a few seconds to process on a modern machine, which is well inside the range that feels instant.

Pros: Private, offline, no file size limits, reorder and rotate in the UI.
Cons: Requires one-time extension install.

Method 2: Online PDF Services

Sites like Smallpdf, iLovePDF, Adobe Acrobat online, and PDF24 all offer a free merge tool. The workflow is the same on every one: upload your files, wait while they are uploaded and processed, download the combined result.

The catch is the tradeoffs mentioned above. Smallpdf caps free users at two merges per day. iLovePDF's free tier limits file size. Adobe Acrobat's web tool requires sign-in and pushes you toward a $15/month subscription. PDF24 is the most generous of the free options but runs client-side by default only for certain tools (the merge tool uploads for most users).

For a one-off merge with non-sensitive files, these are fine. For regular use or private documents, they are not the right answer.

Pros: No install; works on any device with a browser.
Cons: Uploads your files; free tier limits; requires internet.

auto_awesome

Need to merge, split, compress, and OCR PDFs all in one place?

Peak Productivity Pro unlocks advanced PDF features across the suite — batch merge queues, page-range splits, OCR on scanned PDFs, and unlimited file size.

See Pro features arrow_forward

Method 3: Desktop Applications

If you already have a PDF editor installed, you probably already have a merge tool. Adobe Acrobat Pro can combine files from its Home screen. Foxit PhantomPDF, Nitro Pro, and PDF-XChange Editor all have combine features. On macOS, Preview can merge PDFs by dragging thumbnails from one document's sidebar into another's and then saving.

Desktop apps are the heavy-duty option if you regularly do more than just merging — editing text, redacting sensitive areas, signing documents, filling forms. If you are already paying for Acrobat Pro, you might as well use it. If you only need to merge occasionally, an $15/month subscription is hard to justify when a free Chrome extension does the same job.

Pros: Full-featured; integrates with your OS file system.
Cons: Expensive if you only merge occasionally; adds a new app to maintain.

Method 4: Command Line (pdftk, qpdf, Ghostscript)

For the developer audience, the command line is the fastest option once you have the tools installed. The classic choice is pdftk:

pdftk file1.pdf file2.pdf file3.pdf cat output merged.pdf

Or with qpdf:

qpdf --empty --pages file1.pdf file2.pdf file3.pdf -- merged.pdf

These tools are robust, scriptable, and free. The downside is installation friction (pdftk is no longer maintained on some Linux distros, and getting it on modern macOS involves Homebrew) and the fact that you need to remember the syntax. For one-off merges a Chrome extension is faster; for batch automation across hundreds of files the command line wins.

Pros: Scriptable, zero-UI, fast for bulk operations.
Cons: Requires installation and familiarity with the terminal.

Advanced Tips for Merging PDFs

  • Watch the file order. Most tools merge in the order files are listed. Double-check before you click merge, because fixing order after the fact means starting over.
  • Preserve bookmarks. Good merge tools preserve existing bookmarks (the "outline" navigation inside a PDF). Cheaper tools sometimes flatten them. If bookmark structure matters to you, test with a small sample first.
  • Mind the file size. Merging PDFs generally adds file sizes together plus a little overhead. If you are hitting email attachment limits, consider compressing after merging.
  • Password-protected files. Most merge tools fail silently or throw an error on encrypted PDFs. Remove the password first (if you have the rights) or use a tool like qpdf to decrypt, then merge.
  • OCR first, merge second. If you are combining scanned documents and want the result to be searchable, run OCR on each source first, then merge. Running OCR on a merged file works but is slower and harder to roll back if one document has bad scans.

Comparing PDF merge extensions? See our side-by-side review of the top options.

Frequently Asked Questions

Can Chrome merge PDFs without an extension?

Not directly. Chrome can display PDFs and let you print them, but it does not have a built-in "combine files" feature. Printing each PDF to "Save as PDF" and then stitching the output is theoretically possible but impractical. A dedicated extension or separate tool is needed.

Is it safe to merge PDFs with a browser extension?

Yes, provided the extension processes files locally. A good merge extension loads your PDFs into memory on your own computer, processes them with a JavaScript or WebAssembly library, and writes the result back to your Downloads folder — with zero network calls involved. Always check the permissions: a merge tool should not need "read all your browsing data" or similar broad access.

Will merging affect PDF quality?

No. Merging combines the page objects from each source document into a new container without re-encoding images or text. The pages come out exactly the same as they went in, pixel for pixel. This is different from compressing or resizing, which do re-encode content.

How many PDFs can I merge at once?

With an offline tool like a Chrome extension, there is no hard limit — the only constraint is your computer's memory. You can comfortably merge hundreds of pages. Online tools usually cap you at 10 to 20 files or 100 MB total for free users.

Can I merge specific pages from different PDFs?

Yes, with the right tool. Many extensions let you split each file into its pages first, then reorder the individual pages into any sequence you want before saving. This is how you assemble custom documents from parts of several sources.

picture_as_pdf

Merge PDFs Without Uploading

PDF Merge & Split runs entirely inside Chrome. Drag files in, reorder them, and save the merged result. No uploads, no watermarks, no limits.

add_circle Add to Chrome - Free
P

Peak Productivity Team

We build privacy-first Chrome extensions that make your browser work harder so you don't have to. Based on real workflows, not feature checklists.

Get Productivity Tips in Your Inbox

Join our free 21-day course. One email per day, no fluff.

No spam. Unsubscribe anytime.