0

Is it possible to intercept http response body without using chrome debugger as mentioned here ?

Chrome extension to read HTTP response

and here

Chrome Extension - How to get HTTP Response Body?

Thanks,

Community
  • 1
  • 1
Dev.K.
  • 2,428
  • 5
  • 35
  • 49

2 Answers2

2

You can use chrome.devtools.network.onRequestFinished

Paul Roub
  • 36,322
  • 27
  • 84
  • 93
Sergey Gurin
  • 1,537
  • 15
  • 14
-2

In network tab of developer tool. When you select a request on network tab on right hand side yoi will get tabs like request header, response header, and many other.. out of which on os for response data.

Use the chrome.webRequest API to intercept, block, or modify requests in-flight.

chrome.webRequest Documentation

Ashutosh Singh
  • 609
  • 6
  • 21