There are bunch of interesting files accessible via chrome://resources/*
using google chrome.
On linux That the content is in /opt/google/chrome/resources.pak
. I know I can get the whole sources from http://chromium.googlecode.com/svn/trunk/ but I would like to unpack the resource.pak
file.
file resources.pak
reports just junk.
Just to be clear, the question is NOT where to get those resources from. The question is what is the resources.pak file format and how to unpack it?
print "%s: %s" % (resource_id, text)
to:with open(str(resource_id), "wb") as file: file.write(text)
, then run:python data_pack.py yourfile.pak
and you will get files extracted in the current directory. – Tufts