Skip to main content
Troubleshooting SuperchargePerformance

Chrome Crashing When Printing? 5 TESTED Fixes (2026)

Chrome crashes on Ctrl+P because print preview doubles your tab's memory usage — not a printer problem. 5 fixes ranked by root cause, tested on Chrome 146/147.

7 min read Verified Chrome 147

Chrome’s print preview dialog spawns a separate compositor that re-renders the full page, doubling the tab’s memory usage. On machines with many tabs open, this triggers Aw Snap or STATUS_BREAKPOINT crashes — not a printer issue.

Key takeaways

  • Chrome crashing on Ctrl+P is a memory problem, not a printer problem — print preview spawns a separate compositor that doubles tab memory usage
  • Search interest for “chrome crashing when trying to print” spiked 4,900% in March 2026 — this is a widespread, current issue
  • Close 5–10 background tabs before printing to free headroom, or suspend them automatically to prevent the crash entirely

You hit Ctrl+P. Chrome freezes for three seconds, then: Aw, Snap. The print dialog never opens. You try again — same result. Your printer is fine. Other apps print without issue. Chrome is the problem, and the reason is not what most people think.

The crash happens at the moment print preview opens, not during printing. That distinction matters. A tab using 400 MB can demand another 400 MB the instant you press Ctrl+P — print preview re-renders the entire page in a separate process. If your other 15 tabs have already eaten most of available memory, that sudden allocation fails and Chrome crashes.

Google Trends data from March 2026 shows a 4,900% breakout in searches for “chrome crashing when trying to print” — you are not the only one dealing with this.

Need to print right now? Skip to the Save as PDF workaround — it bypasses the compositor entirely and works while you troubleshoot the real cause.

Quick Diagnosis: Match Your Symptom to the Fix

SymptomLikely CauseStart Here
Crash on Ctrl+P with many tabs openMemory pressure from tab countFix 1
Crash only on specific heavy pagesThat page’s compositor demandFix 1 + Fix 2
Crash started after installing an extensionExtension conflictFix 2
Crash with GPU error or display glitchGPU process crashFix 3
Crash on any page, even simple onesCorrupted Chrome profile/cacheFix 4
Print preview shows, then crashes on WindowsOutdated printer driverFix 5

Two minutes with this table saves you trying fixes in the wrong order. Memory pressure (Fix 1) accounts for the majority of cases reported in Chrome support forums in March 2026.

Fix 1: Free Memory Before Opening Print Preview

Print preview’s compositor needs a large contiguous memory allocation. Give it room to work.

  1. Press Shift+Esc to open Chrome’s built-in Task Manager.
  2. Sort by the Memory column, descending.
  3. Close the 5–10 tabs using the most memory — especially video players, large web apps like Figma or Notion, and social media feeds.
  4. Try Ctrl+P again.

If closing tabs manually is impractical, Chrome’s built-in Memory Saver (Settings > Performance > Memory Saver) discards inactive tabs automatically. The limitation: it only discards tabs after they have been inactive for a while, so it won’t help if all your tabs are recent.

SuperchargePerformance takes a more direct approach — it suspends idle tabs via chrome.tabs.discard() on your schedule, releasing their renderer processes immediately. The RAM dashboard shows per-tab memory in real time, so you can see exactly which tabs are consuming the most before you hit Ctrl+P. Free core, zero telemetry, no account required.

Fix 2: Identify the Conflicting Extension

Extension conflicts cause a specific pattern: Chrome crashes on Ctrl+P consistently, but the crash disappears in Incognito mode where extensions are disabled by default.

  1. Press Ctrl+Shift+N to open an Incognito window.
  2. Navigate to the same page you were trying to print.
  3. Press Ctrl+P. If the print preview opens without crashing, an extension is the cause.
  4. Go to chrome://extensions/ and disable all extensions.
  5. Re-enable them one at a time, testing Ctrl+P after each, until the crash returns.

The most common culprits in this category: ad blockers with custom filter lists that interfere with content scripts, PDF viewer extensions that intercept print commands, and print-formatting extensions that inject CSS before the compositor runs. Update the offending extension first — many of these conflicts are fixed in newer versions.

Fix 3: Address the GPU Process Crash

Print preview uses GPU acceleration for rendering, the same as normal page compositing. On systems where the GPU is already under load from other tabs — WebGL ads, video players, hardware-accelerated animations — the GPU process can crash when print preview makes its rendering request.

The symptom: the print dialog opens briefly, you may see a partial render or a blank preview, then the tab crashes. Sometimes a “GPU process has crashed” notice appears in the address bar.

To test whether the GPU is the cause:

  1. Go to Settings > System (chrome://settings/system).
  2. Toggle off Use graphics acceleration when available.
  3. Click Relaunch.
  4. Try printing again.

If the crash disappears with hardware acceleration disabled, update your GPU drivers. NVIDIA, AMD, and Intel all release driver updates more frequently than Chrome major versions — a driver that was current three months ago may be incompatible with Chrome 146/147’s rendering path. After updating drivers, re-enable hardware acceleration.

Fix 4: Clear the Print Preview Cache

Chrome accumulates cached print settings and preview data per site. On some machines — particularly after a Chrome update or a profile that has been active for over a year — this cache becomes corrupted and causes crashes on specific sites or consistently across all printing.

Option A: Clear site-specific data

  1. Navigate to the site you were trying to print.
  2. Click the lock icon in the address bar.
  3. Select Site settings > Clear data.
  4. Reload and try printing.

Option B: Reset Chrome print settings

Chrome stores print settings in your profile. Resetting the profile’s local state file clears these without affecting bookmarks or passwords:

  1. Close Chrome completely.
  2. Navigate to your Chrome profile folder:
    • Windows: %LOCALAPPDATA%\Google\Chrome\User Data\Default\
    • macOS: ~/Library/Application Support/Google/Chrome/Default/
    • Linux: ~/.config/google-chrome/Default/
  3. Delete the file named Local State and the folder named Local Storage.
  4. Reopen Chrome. Settings reset to defaults; your bookmarks and passwords are unaffected.

If none of these options resolve it, the next step is Fix 5 (printer drivers on Windows) or trying the Save as PDF workaround below.

Fix 5: Update Printer Drivers on Windows

On Windows 10 and 11, printer drivers that lag behind Chrome releases cause a specific failure mode: print preview renders successfully, Chrome sends the job to the printer, and then crashes when the print spooler returns a response. The page prints but Chrome crashes afterward — or Chrome crashes mid-send with a Windows driver error in Event Viewer.

  1. Open Device Manager (search in Start menu).
  2. Expand Print queues.
  3. Right-click your printer and select Update driver > Search automatically for drivers.
  4. If no update is found, visit the printer manufacturer’s website directly — Windows Update often trails by months for printer drivers.
  5. For network printers, also update the firmware via the printer’s admin panel.

This fix is Windows-specific. macOS manages printer drivers through system updates, and Linux users with CUPS installations rarely hit this failure mode.

The “Save as PDF” Workaround

While you work through the above fixes, there is a reliable workaround for urgent printing needs. The print compositor is what crashes — the PDF generation pipeline is different.

  1. Press Ctrl+P.
  2. If the print dialog opens at all (even briefly), change the Destination to Save as PDF.
  3. Save the PDF file.
  4. Open the PDF and print from your system’s PDF viewer (Adobe Reader, Preview on macOS, or the Windows PDF viewer).

This bypasses Chrome’s compositor entirely. The PDF renderer uses a different code path that does not demand the same memory spike. Open the saved PDF in any reader and print from there — the content is identical.

Which Fix Applies to You

The pattern matching is straightforward once you know what to look for:

  • Crash with 15+ tabs open, never with 3–4 tabs? Fix 1 is the answer.
  • Works in Incognito but crashes with extensions enabled? Fix 2.
  • Blank print preview followed by GPU error? Fix 3.
  • Started crashing after a Chrome update or on one specific site? Fix 4.
  • Print job sends but Chrome crashes on Windows? Fix 5.

Memory pressure is the root cause for most people because it is invisible — Chrome does not warn you that a tab is about to demand a memory spike. Keeping fewer active tabs is the structural fix. The chrome.tabs.discard() approach in SuperchargePerformance means tabs you are not actively using do not hold memory that print preview needs. Check your RAM dashboard before printing — if total Chrome usage is over 3 GB with 15+ tabs open, suspend a few first.

For related crashes in Chrome, see Fix Chrome Aw Snap Crashes, Fix STATUS_BREAKPOINT Errors, and Fix Chrome High Memory Usage.

Frequently Asked Questions

Why does Chrome crash when I try to print?
As of March 2026, the most common cause is memory pressure. Chrome's print preview dialog launches a separate compositor that renders a full copy of the page — effectively doubling the memory footprint of that tab. On machines with many tabs open, this allocation can exhaust available RAM and trigger an Aw, Snap crash or STATUS_BREAKPOINT error. Extension conflicts (especially certain ad blockers and PDF viewers), GPU process crashes, and corrupted Chrome profiles are the next most frequent causes.
Why does Chrome freeze on Ctrl+P but not during normal browsing?
Normal browsing uses an incremental rendering pipeline. Print preview forces Chrome to render the entire page at once in a separate compositor process, which is a sudden, large memory allocation. If your system is already under memory pressure from other tabs, this spike is what triggers the crash — the browser was fine until the extra allocation hit.
Does the Chrome print crash happen on specific websites?
Sometimes. Pages with heavy CSS, complex tables, or large images are more likely to trigger the crash because the print compositor has more work to do. If the crash only happens on certain sites, those pages are likely memory-intensive. Try closing other tabs before printing those pages specifically.
Is Chrome crashing when printing a Chrome 146/147 bug?
As of March 2026, Chrome 146/147 release notes do not include a fix for print preview crashes, which suggests the issue is environmental rather than a Chrome code defect. The crashes correlate with system memory pressure and extension conflicts — not a specific Chrome version regression.

SuperchargePerformance

Tab suspension, ad blocking, and script control. Free.

Add to Chrome — Free

Don't miss the next release

Be first to know when we ship something new.

Related Articles