Google Chrome Error Code ERR_BLOCKED_BY_RESPONSE: How to Fix It

Easy 10-20 minutes Medium Severity Verified June 2026
Error Code
ERR_BLOCKED_BY_RESPONSE
Brand
Google Chrome
Product Type
browser
Severity
Medium
DIY Difficulty
Easy
Estimated Fix Time
10-20 minutes
The ERR_BLOCKED_BY_RESPONSE error occurs when Chrome's Cross-Origin Read Blocking (CORB) security feature prevents a website from loading external resources. This error typically happens when websites try to access data from other domains in a way that violates browser security policies, protecting you from malicious cross-site attacks.
Ad

Tools You'll Need

How to Fix Error Code ERR_BLOCKED_BY_RESPONSE

  1. Clear Browser Cache and Cookies

    Clearing cookies will sign you out of most websites
  2. Disable Browser Extensions

  3. Try Incognito Mode

  4. Reset Chrome Settings

    This will reset Chrome settings to defaults and disable all extensions
  5. Update Chrome Browser

  6. Disable CORS Blocking Temporarily

    This disables important security features and should only be used temporarily for testing
  7. Contact Website Administrator

Ad

When to Call a Professional

Contact a web developer if you're a website owner experiencing this error, as it typically requires server-side configuration changes to properly implement CORS headers and fix cross-origin resource issues.

Frequently Asked Questions

What causes ERR_BLOCKED_BY_RESPONSE error in Chrome?
This error is caused by Chrome's Cross-Origin Read Blocking (CORB) security feature, which prevents websites from loading resources from other domains when proper CORS headers aren't configured. It protects against malicious cross-site attacks but can block legitimate requests if the server isn't properly configured.
Is ERR_BLOCKED_BY_RESPONSE error dangerous?
No, this error is actually Chrome protecting you from potentially malicious content. It means Chrome blocked a request that could have been a security threat. The error itself is not dangerous, but it may prevent websites from functioning properly.
Can I permanently disable CORB in Chrome?
While you can temporarily disable CORB using command line flags, it's not recommended as it removes important security protections. Instead, website developers should fix their CORS configuration to properly allow cross-origin requests.
Why does this error only happen in Chrome and not other browsers?
Different browsers implement cross-origin security policies differently. Chrome's CORB is particularly strict to enhance security. The same website might work in other browsers that have less restrictive policies, but this doesn't mean Chrome is wrong - it's being more secure.
Will clearing my browser data fix ERR_BLOCKED_BY_RESPONSE?
Clearing browser data can help if the error is caused by corrupted cache or cookies, but won't fix server-side CORS configuration issues. If clearing data doesn't work, the problem is likely with the website's server configuration rather than your browser.