There is no way out of the box to get the source of resources without resorting to the chrome.experimental.devtools.resources API.
However, when the experimental APIs are activated using the --enable-experimental-extension-apis switch, you can do the following to extract the source of each resource:
chrome.experimental.devtools.resources.onFinished.addListener(function(resource) { resource.getContent(function(content, encoding) { if(encoding !== 'base64') { alert(content); } }); });
source share