Google-chrome – Identify which Chrome extension an http request is coming from in chrome console

google-chromegoogle-chrome-extensions

I have this screenshot which shows the following request as failing:

enter image description here
click to enlarge

Request URL:chrome-extension://cahedbegdkagmcjfolhdlechbkeaieki/jquery.min.map
Request Headers CAUTION: Provisional headers are shown.
Referer:http://myjoomladomain.com/administrator/index.php?option=com_menus&view=items
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko)
   **Chrome/32.0.1700.107** Safari/537.36
X-Source-Map-Request-From:inspector

It is send from one of my 50 or so extensions.

How can I identify the extension sending the failed request and remove it?

Best Answer

  1. Open chrome://extensions/.

  2. Enable Developer mode:

    enter image description here

  3. Search for cahedbegdkagmcjfolhdlechbkeaieki (using Ctrl+F) and you should find the extension.

Related Question