0

I'm trying to identify API calls that a chrome extension is doing, but I am not seeing those in the network tab of Chrome (inspect->network).

Is there a way to mask those out from there? Should I use a different tool to identify the network activity?

ACerts
  • 308
  • 1
  • 6
  • 22
Noam
  • 3,341
  • 4
  • 35
  • 64

1 Answers1

2

I guess you must be using DevTools for Chrome to debug you extension. In that case you can't see the network activities of your extension.

In order to debug you extension, you should use the DevTools for Extension:

Right click the extension icon, and you will see Inspect the popup, click that and select Network tab and you are done.

Like this(pay attention to the title of this): enter image description here

For more infomation, you can see Debugging of the chrome-extension tutorial. Hope this helps.

WW00WW
  • 417
  • 4
  • 15