STATUS_BREAKPOINT

Chrome 'Aw, Snap!' STATUS_BREAKPOINT fix for specific sites

Software – Web Browsers Beginner 👁 2 views 📅 May 28, 2026

Chrome crashes with STATUS_BREAKPOINT on a few sites? It's usually a corrupted cache or a misbehaving extension. Here's the fix.

Quick answer: Clear your Chrome cache for those sites, then disable any ad blocker or privacy extension. If that doesn't fix it, turn off hardware acceleration.

You're browsing normally, click a link, and boom — that gray 'Aw, Snap!' page with the angry face. The error code is STATUS_BREAKPOINT. I know how annoying this is, especially when it only happens on one or two sites (Reddit and Gmail are common culprits, but I've seen it on WordPress dashboards and banking portals too).

The STATUS_BREAKPOINT error means Chrome hit a debugging breakpoint in its rendering engine — it's not supposed to happen in normal browsing. It's almost always caused by a corrupted cached resource, a rogue extension that's injecting scripts into pages, or a hardware acceleration glitch. Here's how to squash it.

Step 1: Clear cache and cookies for those specific sites

Don't nuke your entire browser history — just clear the data for the problem sites. This is the fastest fix and fixes about 40% of cases.

  1. On the broken page, click the lock icon (or 'Not secure') to the left of the URL.
  2. Click 'Cookies and site data' then 'Manage cookies and site data'.
  3. Click the trash icon next to each cookie entry. Alternatively, you can click 'Clear data' under 'Site data'.
  4. Reload the page with Ctrl+F5 (or Cmd+Shift+R on Mac).

If the error persists, go to chrome://settings/clearBrowserData, select 'Cookies and other site data' and 'Cached images and files', set the time range to 'Last 7 days', and click 'Clear data'. Then close Chrome completely and reopen it.

Step 2: Disable extensions (one at a time)

Ad blockers, privacy extensions (like uBlock Origin, Privacy Badger, or Ghostery), and even some password managers cause this. They inject JavaScript into pages that can trigger the breakpoint error.

Go to chrome://extensions. Toggle off all extensions. Restart Chrome and test the site. If it works, turn them back on one by one until the error returns. That's your culprit. Keep it disabled or find an alternative.

I've seen uBlock Origin trigger this on payment pages and LastPass on login forms. If you need an ad blocker, try uBlock Origin in 'Medium' blocking mode or switch to AdGuard.

Step 3: Disable hardware acceleration

This one's a hidden gem — it fixes the error when Chrome's GPU rendering goes haywire. Go to chrome://settings/system. Turn off 'Use hardware acceleration when available'. Relaunch Chrome and test.

If that works, you can leave it off permanently. Most users won't notice a performance difference unless they're watching 4K video or gaming in the browser.

Alternative fix if the above fails

Sometimes the Chrome profile gets corrupted. Create a new one:

  1. Click your profile icon in Chrome, then 'Add' (or 'Manage people').
  2. Create a new profile with no sync enabled.
  3. Try the problem site in the new profile.
  4. If it works, you can migrate bookmarks and passwords from the old profile via chrome://settings/people.

Another quick thing: check if the site works in Incognito mode (Ctrl+Shift+N). If it does, it's almost certainly an extension or cookie issue.

Prevention tip

Keep Chrome updated. Old versions have known bugs with HTML parsing that cause breakpoint errors. Go to chrome://settings/help — Chrome will auto-update if you're behind. Also, limit your extensions to only what you need. Every extra extension adds attack surface and weird interactions.

If you're a developer or power user, check the Chrome DevTools console (Ctrl+Shift+J) when the error appears. You might see a specific script or source map that's causing the problem — share that with the site's support team.

That's it. This error is annoying but solvable. Try the steps in order — you'll be back to browsing in under 5 minutes.

Was this solution helpful?