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,
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,
You can use chrome.devtools.network.onRequestFinished
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.