Chrome Not Responding? 5 TESTED Fixes That Work (2026)
Chrome's 'Not Responding' is a browser-process hang — not an Aw, Snap crash or tab freeze. Identify which it is and apply the right fix in under 5 minutes.
Chrome’s “Not Responding” is a Windows OS-level signal: the browser’s main process stopped pumping its message loop for roughly 5 seconds. That grays the entire window. It is not an “Aw, Snap!” crash (one tab’s renderer died, other tabs are fine) and not a tab freeze (one tab locked, the Chrome window still works). Each state has a different cause and a different fix.
Fix 1: End the Hung Process Without Killing the Whole Browser
The fastest recovery (and the one that saves the most tabs) is targeting only the process causing the hang.
While Chrome still accepts Shift+Esc:
- Press Shift+Esc to open Chrome’s Task Manager.
- Click the CPU column to sort descending.
- Look for any process showing sustained high CPU: typically an Extension, GPU Process, or a specific tab.
- Click that row and select End Process. Chrome kills just that process; everything else stays open.
- Check
chrome://crashesafterward. Chrome logs hang reports here automatically, and the crash IDs can help identify a repeating culprit.
When Chrome is already fully locked:
- Open Windows Task Manager with Ctrl+Shift+Esc. This bypasses the locked Chrome window entirely.
- Click More details if in compact view, then the Processes tab.
- Find the
Google Chromegroup. Expand it. - Look for a
chrome.exeentry with spiking CPU or disk I/O (not flat). End that specific process. - Do not end all Chrome processes at once. Chrome restores your session on the next launch if some processes survive cleanly.
What you’ll lose: Only the content in the process you ended. Session data (other tabs, form fields you typed in other tabs) survives if Chrome can close gracefully.
Fix 2: Disable Hardware Acceleration If Chrome Locks During GPU Work
If “Not Responding” happens consistently when scrolling, loading heavy pages, or playing video, a GPU driver hang is freezing Chrome’s rendering pipeline. The browser process waits for the GPU response indefinitely until Windows declares it unresponsive.
- Navigate to
chrome://settings/system - Toggle off Use graphics acceleration when available
- Click Relaunch
- Test Chrome under normal usage: scroll through a video-heavy page, open YouTube, switch tabs rapidly
If the hang stops, the GPU driver is the actual problem. Disabling hardware acceleration is a workaround, not a fix. Proceed to Fix 4 (GPU driver update) and then re-enable acceleration. Running Chrome in software rendering mode permanently increases CPU load on video-heavy sites.
You can also check chrome://gpu for any fields reading “Software only, hardware acceleration unavailable.” That confirms driver-level failures Chrome already detected.
Fix 3: Identify and Remove the Runaway Extension
Extension service workers run in Chrome’s browser process context. A service worker that enters an infinite loop, makes repeated failing network calls, or tries to read a corrupt database blocks the shared event loop. That is what causes the “Not Responding” state more often than any other single factor.
30-second diagnosis: Open a new Incognito window (Ctrl+Shift+N). Extensions are disabled in Incognito by default. Use Chrome normally for a few minutes. If it does not hang in Incognito, an extension is causing the problem.
To find the specific extension:
- Go to
chrome://extensions/ - Toggle off all extensions
- Re-enable them one at a time, using Chrome normally for 2–3 minutes between each
- When the hang returns, the last-enabled extension is the culprit
- Check
chrome://process-internalsfor service worker status. Entries marked asRUNNINGthat should be idle may indicate a stuck worker
Extensions most likely to cause main-process hangs: VPNs that intercept all network requests, clipboard managers, screen recorders, and extensions last updated before Chrome 125 (pre-MV3 service worker changes).
Suspended tabs and runaway extensions: If you use tab suspension, suspended tabs cannot run scripts. That means their extension interactions go quiet. But the extension’s own service worker can still misbehave independently of any tab. SuperchargePerformance’s chrome.tabs.discard() suspension eliminates tab-level script pressure on the browser process — but it does so selectively: tabs playing audio (tab.audible), pinned tabs, tabs with unsaved form input (detected via injected script checking for changed form fields), and 25+ auto-protected domains (Gmail, Google Docs/Sheets/Slides/Drive/Calendar, Figma, Notion, Slack, Discord, Teams, Linear, Miro, Canva, Airtable, Asana, Monday, and others) are never suspended, even when background tabs are. That intelligence matters here: a naive suspender that freezes a Figma tab mid-edit is worse than no suspender at all. Perf’s suspension cannot stop an extension service worker that is stuck in its own loop — the right fix for a runaway service worker is removing the extension.
Fix 4: Update GPU Drivers
If Fix 2 stopped the “Not Responding” hangs (or if chrome://gpu shows driver errors), the underlying cause is an outdated or regressed GPU driver conflicting with Chrome 149’s hardware-accelerated compositing pipeline.
NVIDIA:
- Open NVIDIA GeForce Experience or go to nvidia.com/drivers
- Download the latest Game Ready Driver
- Run the installer, choose Custom installation, check Perform a clean installation
- Restart Windows
AMD:
- Open AMD Software: Adrenalin Edition or go to amd.com/support
- Check for updates and install the latest
- Restart after installation
Intel integrated graphics:
- Open Device Manager (Win+X)
- Expand Display adapters, right-click your Intel GPU, select Update driver
- Or download directly from intel.com/download-center
After the driver update, go back to chrome://settings/system and re-enable hardware acceleration. Then restart Chrome and test.
Fix 5: Reset the Chrome Profile If Nothing Else Works
A corrupt profile database — specifically the Preferences file or IndexedDB entries — can cause Chrome to hang on startup or within seconds of opening. This is rare but produces hangs that bypass all other fixes.
Soft reset (preserves most data):
- Go to
chrome://settings/→ Reset settings in the left panel - Select Restore settings to their original defaults
- Click Reset settings to confirm
- Extensions, shortcuts, and some preferences are removed; bookmarks and history stay
Fresh profile (most thorough):
- Close Chrome completely (check Windows Task Manager that no
chrome.exeprocesses remain) - Press Win+R, type
%localappdata%\Google\Chrome\User Data, press Enter - Rename the Default folder to Default.old
- Reopen Chrome. It creates a new Default folder and prompts for Google account sign-in
- Sign in to restore bookmarks and passwords from Google Sync
If Chrome stops hanging with the new profile, something in your previous profile data was corrupt. The Default.old folder stays intact so you can copy specific files back (like your bookmarks, at Default.old\Bookmarks) if needed.
Why Chrome Stops Responding (Not the Same as Aw Snap)
Chrome runs four distinct process types. Understanding which one is stuck tells you where to look:
| Process | What it handles | What happens when it hangs |
|---|---|---|
| Browser process | Window chrome, tab bar, menus, extension service workers | Entire window says “Not Responding” — this article |
| Renderer process | One tab’s page content, JavaScript | That tab shows “Aw, Snap!” — see the Aw, Snap fix |
| GPU process | Hardware-accelerated compositing for all tabs | Can freeze the browser process waiting for GPU; see Fix 4 |
| Utility processes | Network service, audio, etc. | Usually silent failures; rarely cause visible hangs |
“Not Responding” always means the browser process stopped. The three most common triggers:
- Runaway extension service worker — a service worker loops or blocks, starving the browser’s event queue
- GPU driver hang — the GPU process stops responding; the browser process waits and Windows notices first
- Synchronous I/O block — the browser tries to read/write a profile file (Preferences, IndexedDB) and the disk blocks the main thread
The third case is why adding Chrome’s data directory to Windows Defender exclusions sometimes resolves it. Real-time scanning can hold file locks that Chrome’s main thread blocks waiting on. Full details in fixing Chrome freezing on Windows 11.
“Aw, Snap!” follows a completely different path: a renderer process (one tab) crashes or gets killed by the OS due to memory pressure, and Chrome shows the error page. Other tabs are unaffected. If you’re seeing “Aw, Snap!” rather than a gray dimmed window, see fixing Aw, Snap crashes instead. For high overall memory consumption that leads to both types of hangs, see fixing Chrome high memory usage.
When Chrome Won’t Respond Despite Fixes
If all five fixes fail to prevent the hang, these escalation paths cover the edge cases:
Check for Windows system file corruption:
Run sfc /scannow in an elevated Command Prompt. Corrupted Windows system DLLs can produce GPU pipeline failures that surface as Chrome hangs. SFC repairs them without reinstalling Windows.
Test a new Windows user account: Create a temporary Windows user (Settings → Accounts → Family & other users → Add someone else). Sign in there and open Chrome. If it does not hang, the issue is in your Windows user profile, not Chrome itself. A Windows profile repair or migration is the fix.
Try Chrome Canary: Download from google.com/chrome/canary. Canary runs as a separate browser and does not affect your stable Chrome installation. If Canary does not hang, a bug in the current stable build will be fixed in an upcoming update.
Copy your profile before a full reinstall:
Before uninstalling Chrome, copy %localappdata%\Google\Chrome\User Data\Default\Bookmarks and Login Data somewhere safe. A clean Chrome reinstall deletes the entire User Data folder and these files will be gone otherwise.
If X → do Y:
- Hangs always happen at the same site → Fix 3 (disable extensions first, then test site in isolation)
- Hangs started right after a Windows Update → Fix 4 (driver regression is the #1 cause)
- Hang lasts 5–30 seconds then resolves on its own → not a true Not Responding; likely Windows Efficiency Mode throttling, see Chrome freezing on Windows 11
- Chrome hangs within 10 seconds of opening, before any tabs load → Fix 5 (corrupt profile)
- Chrome hangs only during video or scroll-heavy pages → Fix 2, then Fix 4
Frequently Asked Questions
What is the difference between Chrome 'Not Responding' and 'Aw, Snap'?
Can I recover my tabs without losing everything when Chrome says Not Responding?
Does a Chrome extension cause 'Not Responding'?
Is Chrome 'Not Responding' the same as a tab freeze?
What triggers 'Not Responding' during GPU work?
Don't miss the next release
Be first to know when we ship something new.
Related Articles
FIX Chrome Aw, Snap! Crash Error: 5 Fixes That Work (2026)
Aw, Snap crashes kill Chrome tabs without warning. RAM exhaustion causes 80% of them. Free idle tab memory and clear extension conflicts, fast to deep.
FIX Chrome Out of Memory Errors: 5 Fixes Ranked (2026)
Chrome out of memory crashes trace to 2-3 RAM-hungry tabs. Identify the culprit in Task Manager and cut renderer crashes with targeted tab suspension.
STOP Chrome Freezing on Windows 11: 9 Fixes (2026)
Chrome freezing on Windows 11 with 'Not Responding'? GPU drivers and tab overload are the usual culprits. 9 tested fixes, ranked by cause, no reinstall needed.
FIX STATUS_ACCESS_VIOLATION in Chrome: 5 Solutions (2026)
STATUS_ACCESS_VIOLATION crashes Chrome with no warning. It's a memory access error, not malware. Extensions and GPU drivers cause 80% of cases. 5 tested fixes.