Hi,
I'm trying to mimic the Network tab in Chrome developer tools panel and wanted to filter network calls in a seperate panel. I'm listening to chrome.devtools.network.onRequestFinished.addListener to filter out the unnecessary calls. However I'm not able to see the response content from the 'req' object in:
chrome.devtools.network.onRequestFinished.addListener(function(req) {
var url = req.request.url;
var status = req.response.status;
I only see bare minimal fields like status, mime etc in the response object and no response content. I also tried exporting the HAR from network tab which also has the content missing from response in the export.
Any help is appreciated.
Thanks.