View Cached Images And Files in Google Chrome
cached images and files google chrome, How can I view the pictures that Google Chrome cached on websites? it is very easy to view these files there is a specific place to view it below is the way to getting rid of this solution.
Solution
Files are Stored in %UserProfile%\Local Settings\Application Data\Google\Chrome\User Data\Default\Cache
Copy the above URL and paste it into the address bar of My Computer Window and press enter or paste this in your address bar and enter, you will get all the files
Solution 2
make a bookmark with this code as the url:
javascript:
var cached_anchors = $$('a');
for (var i in cached_anchors) {
var ca = cached_anchors[i];
if(ca.href.search('sprite') < 0 && ca.href.search('.png') > -1 || ca.href.search('.gif') > -1 || ca.href.search('.jpg') > -1) {
var a = document.createElement('a');
a.href = ca.innerHTML;
a.target = '_blank';
var img = document.createElement('img');
img.src = ca.innerHTML;
img.style.maxHeight = '100px';
a.appendChild(img);
document.getElementsByTagName('body')[0].appendChild(a);
}
}
document.getElementsByTagName('body')[0].removeChild(document.getElementsByTagName('table')[0]);
void(0);
0 comments:
Post a Comment