The Chrome Print-to-PDF Password Trick
Drag a locked PDF into Chrome, hit Print, choose "Save as PDF", and somehow the output is no longer restricted. Forum posts call this a hack. It is not. The trick has a very specific mechanism, and knowing how it works tells you exactly when it will succeed and when it will fail.
What this trick actually removes
Restrictions (print, copy, edit, comment). Not open passwords. If Chrome prompts you for a password before showing the page, no amount of re-printing helps — the content has not been decrypted yet. Read owner vs open password for the full distinction.
The exact steps that work
Procedure
- Open a new Chrome tab.
- Drag the PDF file from your file manager into the tab.
- Wait for the pages to render. If Chrome shows a password prompt, stop — this trick cannot proceed.
- Press Ctrl+P (Windows/Linux) or Cmd+P (macOS).
- In the destination dropdown, choose Save as PDF.
- Click Save, pick a new filename, and confirm.
The resulting file is a fresh PDF assembled from rendered page images and, when the original was vector, re-embedded text content. The original PDF security dictionary is gone because Chrome's print-to-PDF pipeline does not carry it over. That is the entire mechanism.
Why this works: the technical reason
A PDF's owner password does not actually encrypt the content. It just flags restrictions in a metadata dictionary. Viewers are trusted to honor those flags. Adobe Reader honors them. Chrome's PDFium viewer does not. When Chrome renders a restricted PDF, it ignores the "no printing" flag and draws the pages anyway. Once the pages are on screen, the browser's print pipeline can export them like any other web content.
Contrast this with an open password. A PDF protected by an open password is genuinely encrypted with RC4 or AES. Until the correct password produces the decryption key, the page stream is unreadable ciphertext. Chrome has nothing to render, so there is nothing to print. The viewer simply shows a password box and stops. Read how PDF encryption works for a deeper dive.
Success and failure scenarios
| PDF type | Chrome can render? | Print trick works? |
|---|---|---|
| Owner restrictions only | Yes | Yes |
| Open password, you know it | Yes, after typing password | Yes |
| Open password, unknown | No | No |
| Certificate-encrypted PDF | No | No |
| DRM-wrapped (Adobe LiveCycle, FileOpen) | No | No |
| Corrupted or malformed PDF | Partial | Partial (pages may be missing) |
| Scanned image PDF with restrictions | Yes | Yes, but loses text layer |
The pattern is simple. If Chrome can display the pages without asking for a password, the trick will work. If Chrome puts up a password box, no browser trick will bypass that box. Many forum threads get this wrong because they conflate the two password types.
Chrome vs Edge vs Firefox vs Safari
| Browser | PDF engine | Respects restrictions? | Print trick works? |
|---|---|---|---|
| Chrome | PDFium | No | Yes |
| Edge | PDFium (Chromium) | No | Yes |
| Firefox | PDF.js | No | Yes |
| Safari | PDFKit (Apple) | Partially | Sometimes |
| Adobe Reader | Adobe proprietary | Yes | No |
Safari is the interesting outlier. Apple's PDFKit honors some restriction flags, so dragging a restricted PDF into Safari may grey out the Print menu item. That is not a Chrome problem — it is an Apple choice. If you need the trick and Safari refuses, switch to Chrome or Firefox.
Why the trick fails (and what to do)
Chrome shows a password prompt
The document has an open password. No browser trick bypasses this. You need either the password itself or a recovery service.
Pages render but Print menu is greyed out
Rare in Chrome. If you see this, switch to Firefox. PDF.js is more consistent about ignoring restriction flags.
Output has lost the text layer
Some print pipelines rasterize vector text. For scanned docs this does not matter. For text PDFs, use qpdf or Preview Export (on macOS) to preserve selectable text.
File is a DRM or certificate PDF
Neither the trick nor any generic recovery tool can help. These files are designed to resist re-export.
Smarter alternatives for the three common cases
You know the password
Skip the print trick. Use qpdf on the command line or the macOS Preview Export. Both preserve text, fonts, and bookmarks far better than re-printing. See our remove known-password guide.
Only restrictions, no open password
The Chrome trick is genuinely fine here. It is fast, free, local, and private. Just be aware that very complex PDFs (tagged accessibility, layered forms) may lose fidelity.
Forgotten open password
Only cryptographic recovery can help. Identify the encryption version first: 40-bit PDFs are always recoverable, AES-128 is often recoverable, AES-256 depends on password entropy. Our encryption type breakdown covers the full picture.
One-line rule for the Chrome trick
If Chrome shows the pages without asking for a password, the print trick will strip restrictions. If Chrome asks for a password, no browser technique will get you in.
Legal and ethical reminder
Only unlock files you own or are authorized to modify. The Chrome trick is technically simple, but legally it is still subject to the same rules as any other bypass method. See our legality guide.