google chrome extension - Getting "net::ERR_BLOCKED_BY_CLIENT" error on some AJAX calls -


Recently I have noticed that some adblocker extensions (like Adblocker Plus) block some Ajax calls. I get this error on the console:

  get http: //localhost/prj/conn.php?q=users/list/ net :: ERR_BLOCKED_BY_CLIENT  

Why does this block any Ajax call, but not others, and what happens to it? Is there any way other than telling the user to shut down the advertiser?

Adblockers usually have some rules, i.e. they match the URI against some type of expression (Sometimes they also match the expression from the DOM, not the case in this case).

Rules and expressions that are just prone to making a few small bits of text (URI) a few false positives ...

Give your users their extensions (at least your In addition to disabling the site, you can also get expansions and tests that out of the rules / expressions which block your stuff, provided the extension provides enough information about it. Once you have identified the culprit, you can try to avoid triggering the rule by using different URIs, this rule is incorrect or more detailed according to the team's report, or both. For example, Adblock Plus has an blockable item view, which shows all blocked objects on a page and shows the rules.

Who triggered the block and those items including XHR requests

Blocked item


Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

lua - HowTo create a fuel bar -