Reputation: 35129
I'm currently looking at FF and Chrome cache files and can't find what I'm looking for.
I'm looking for raw html file like you would see if you would click 'View Source Code'
.
And if it does not store it automatically, do you know any way I can configure FF or Chrome to save html files in cache?
Upvotes: 2
Views: 2993
Reputation: 3765
about:cache
will let you browse your cache in Firefox or Chrome.
Have fun running gunzip
on hex dumps you've saved in your favorite hex editor.
You can strip out the information surrounding the raw hex relatively easily with a fixed-width split in your favorite spreadsheet program. Using a hex editor, paste the raw hex into a new document, save it, then gunzip
it. If the document was not gzipped to begin with (no Content-Encoding: gzip
in the headers) then the HTML should already be in the rightmost column.
Upvotes: 2