1

How do I see the requests made by the extensions running in Chrome in the background on a particular website?

user1471283
  • 381
  • 1
  • 4
  • 12
  • Extensions can initiate requests from content scripts and the background page. For content scripts, just open the devtools for a specific page. To get the devtools for the background page, [see this picture](http://stackoverflow.com/a/10258029/938089?where-to-read-console-messages-from-background-js-in-a-chrome-extension). – Rob W May 27 '13 at 21:18

2 Answers2

1

You can do that for extensions you are developing by looking at your extension / app background page (right click on the extension -> manage extensions -> inspect views under your extension).

Then open the debug panel (Ctrl+Shift+J) when looking at the background page of your extension (only debug extensions), you'll be able to see the network traffic for it.

Matheus Lacerda
  • 5,983
  • 11
  • 29
  • 45
Dory Zidon
  • 10,497
  • 2
  • 25
  • 39
1

You can monitor all HTTP traffic on you PC with Fiddler.

Drahcir
  • 11,772
  • 24
  • 86
  • 128