Print-friendly options for Google Chrome

Updated 2026-08-14 · 7 min read

Short answer: Chrome has no print-ready reader mode, so the clean options are a bookmarklet, a Chrome Web Store extension, DevTools, or a web-based cleaner. A bookmarklet is the safest: it is one line of JavaScript in a bookmark, needs no permissions and cannot read pages you do not click it on.

Chrome is the only major browser without a reader mode you can print from. It gained a Reading mode side panel in 2023, but that is a narrow panel beside the page, not a replacement for it. Press Ctrl+P while it is open and Chrome prints the cluttered page underneath, ads and all.

So getting a clean printout out of Chrome means bringing your own tool. There are four realistic options and they trade off convenience against how much access you hand over.

OptionSetupPermissions it needsBest for
BookmarkletDrag a link to the bookmarks bar, about 10 secondsNone. It only runs when you click it.Almost everyone. Works in Chrome, Edge, Brave, Opera, Arc and Vivaldi.
Web tool, paste the URLNothing to installNoneOne-off jobs, locked-down work machines, borrowed computers.
Chrome Web Store extensionTwo clicks plus a permission promptUsually "read and change all your data on all websites"Daily printing, if you have vetted the publisher.
DevTools, delete elements by handF12, then click and press DeleteNonePages that defeat everything else: dashboards, web apps, invoices.

Four ways to get a clean printout from Chrome, compared.

Option 1: The bookmarklet (works today)

A bookmarklet is a bookmark whose address is a small piece of JavaScript instead of a URL. Click it on any page and it opens that page in the cleaner. It installs in seconds, needs no permissions, syncs with your other bookmarks, and cannot do anything at all until you click it.

  1. Show the bookmarks bar Press Ctrl+Shift+B on Windows or Cmd+Shift+B on Mac. You need somewhere to drop it.
  2. Open the extensions page Go to the Chrome page and find the card headed "Works today: the bookmarklet".
  3. Drag the button to the bar Drag the ⚡ button onto your bookmarks bar. If dragging is awkward, right-click it, copy the link, then create a new bookmark and paste the copied text into the URL field.
  4. Try it on a real article Open a news article and click the bookmarklet. The cleaner opens in a new tab with that page already loaded.
  5. Clean and print Delete anything left over by clicking it, set the text size, then press Print or Download PDF.

Watch out: To be straight about it: the "Add to Chrome" button on this site is a demo listing. There is no published Chrome Web Store extension for PrintxPDF, and the star rating and user count on that page are placeholder design. The bookmarklet on the same page is real and works right now, as does pasting a URL into the web page printer.

Option 2: A Chrome Web Store extension

Plenty of genuine print-friendly extensions exist. The question is not whether they work, it is what they can see. An extension that reformats pages needs to read page content, and that permission is the same one a data-harvesting extension needs.

Chrome runs on Manifest V3, which improved some things but did not change the core bargain: host permissions still mean the extension can read what is on the page.

Check these five things before you click Add

  1. The permission prompt. "Read and change all your data on all websites" is the broadest access Chrome grants. For a print tool it is often unnecessary, because it could ask for access only on the tab you click.
  2. The Privacy practices tab on the store listing. Publishers must declare what data they collect. A print tool that declares it collects "web history" or "user activity" is telling you it phones home about every page you visit.
  3. Last updated date. An extension untouched for three years may still be running old code or may have been quietly sold.
  4. The publisher. Click the developer name. A real site, a real privacy policy and a support address are the minimum. Anonymous publishers with a Gmail contact are a risk.
  5. Reviews from the last few months, not the average. Extensions get bought and turned into adware after they build an audience. Recent one-star reviews complaining about injected ads or redirects are the warning.

Tip: After installing anything, go to chrome://extensions, click Details, and set Site access to On click. The extension then does nothing until you click its icon, which for a print tool loses you nothing and removes the standing permission entirely.

Option 3: Delete the clutter with DevTools

For a page that beats every automatic tool, remove the junk by hand. Press F12, click the arrow icon at the top left of DevTools, click the ad or sidebar on the page, then press Delete on the highlighted node. Repeat, then print. Nothing is permanent; a reload restores the page.

// Faster: open the Console tab (Esc toggles it) and paste this.
document.querySelectorAll('nav, aside, footer, iframe, [class*="ad-"], [id*="banner"], [class*="promo"], [class*="newsletter"]')
  .forEach(el => el.remove());
// Then press Ctrl+P.

Option 4: Squeeze the Chrome print dialog

Before reaching for any tool, the dialog itself removes a surprising amount. Press Ctrl+P and open More settings.

Already saved the page as an HTML file? Convert it straight to a PDF in your browser.

What about Edge, Brave and the rest?

Every Chromium browser shares Chrome extensions and the same print dialog, so all of the above transfers directly. Edge is the exception worth knowing: it ships Immersive Reader, reachable with F9 or the book icon in the address bar, which does what Chrome will not. If you print articles often and you are already on Windows, Edge is the path of least resistance. The full comparison lives in printing a web page without ads.

Frequently asked questions

Does Chrome have a reader mode?

Chrome has a Reading mode side panel, opened from the side panel menu, but it is not a page mode. Printing while it is open prints the original cluttered page. For a printable clean view you need a bookmarklet, an extension or a web tool.

Is a print extension safe to install?

It depends entirely on the publisher. Any extension that reformats pages can read them, so check the Privacy practices tab, the last updated date and recent reviews, then restrict it to "On click" site access in chrome://extensions after installing.

Do I need an extension to print a web page cleanly?

No. A bookmarklet does the same job with no permissions, and pasting the URL into a web-based cleaner needs nothing installed at all. An extension only saves you a click, which matters if you print pages many times a day.

Does PrintxPDF have a Chrome extension?

Not a published one. The extension pages on this site are a demo listing and the Add to Chrome button does nothing. The bookmarklet on the same page works today in every Chromium browser, and so does pasting a URL into the web page printer.

How do I remove an extension that changed my search or added ads?

Go to chrome://extensions, toggle it off, then click Remove. Afterwards check chrome://settings/searchEngines and your homepage setting, since some extensions leave those changed behind after removal.

Tools

Keep reading