I'm catching the Chrome extension xhr requests but not getting the returned values. I can see that the status is 200 in the value I received and it is complete. But I can't access the return value. How can I access the return value from the request?

chrome.webRequest.onCompleted.addListener(function (details) {
console.log(details)
}, {urls: ['<all_urls>']});