Most "PDF splitter" Chrome extensions are thin wrappers over a web service that uploads your file and downloads the result. A genuine local splitter does the work in JavaScript inside the tab, so the file never leaves your machine. Here is how the PDF Merge & Split extension does it across three different split modes.
Three Split Modes, Zero Upload
PDF Merge & Split runs entirely in your browser. No account, no upload, no watermark.
Add to Chrome, FreeMode 1: split into individual pages
One file per page, delivered as a ZIP:
- Click the toolbar icon, pick Split.
- Drop your PDF in.
- Choose Every page.
- Click Split & Download.
Output filenames are zero-padded (page-001.pdf through page-NNN.pdf) so they sort correctly in any file manager.
Mode 2: split by page range
Custom ranges, with full syntax:
1-10, pages 1-10 inclusive.1-10, 22, 30-end, three ranges in one job.5, single-page extract.
You can mix ranges and singletons, and pick whether each range becomes its own file or all ranges combine into a single output.
Mode 3: split by bookmark
Best for documents with a real outline (books, technical reports, conference proceedings):
- Drop the source PDF.
- Choose By bookmark.
- Pick the bookmark depth (top level for one file per chapter).
- Preview the proposed splits, deselect any you do not want.
- Click Split.
Output files are named after the bookmark text. If a bookmark has a name unsafe for filenames, the extension sanitizes it.
Performance
All three modes run client-side. Performance scales with source file size and page count:
- 50-page split: under 2 seconds.
- 500-page split: 5-15 seconds.
- 5,000-page split: 30-60 seconds, possibly longer on older machines.
Privacy properties
Same as merge mode: no upload, no fetch with file content, no telemetry on file content. You can verify in DevTools or by disconnecting from the internet and splitting anyway.
PDF Splitter Chrome Extension, Tools Compared
| Tool | Split modes | Local-only | Daily limit | Cost |
|---|---|---|---|---|
| PDF Merge & Split (extension) | 3 (page/range/bookmark) | Yes | None | Free |
| iLovePDF (web) | 2 (page/range) | No | ~3 | Free tier |
| Smallpdf (web) | 2 | No | 2/day | Free tier |
| Adobe Acrobat Pro | 3 | Yes | None | $14.99/mo |
| Random splitter extensions | Varies | Often no | Varies | Often free |
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
- Split a PDF Into Individual Pages
- Split a PDF by Page Range
- PDF Splitter With No Installation
- PDF Merge Chrome Extension
Frequently Asked Questions
Why does the extension need three split modes?
Different jobs need different boundaries. Single-page split is for archive-style use; range split is for surgical extracts; bookmark split is for structured documents like books and proceedings.
Is there a watermark on split output?
No, never. The extension never adds a watermark to any output regardless of plan or file size.
How do I verify the split is local?
Open Chrome DevTools, Network tab, perform a split. No outgoing requests carry file content. You can also disconnect from the internet and split anyway, the result is identical.
What is the largest PDF I can split?
Bounded by browser memory. On a 16 GB laptop, comfortably 1-2 GB of in-memory data. Older machines should split very large files in two stages.
Can I split a password-protected PDF?
Yes. The extension prompts for the password when loading the source. The split runs on the unlocked content in memory.