I'm sorry, I haven't found an extension, but in linux
you could raid google-chrome's cache for the images - if only from 1 site, clear your cache first then load the pages you want to get images from.
To find google's cache -- use your file manager (thunar / nautilus / whatever ) to navigate to /home/yourusername/.cache/google-chrome/Default/Cache (This is a hidden folder)
Now that you know where all those downloaded images and stuffs have gone lets see if we can get them out of there, and rename them with proper extensions (your gonna have to rename each one to something comprehensible) HERE Goes... -->
Example 1: to find JPEG files under /home/yourusername/.cache/google-chrome/Default/Cache
open a terminal...
cd /home/yourusername/.cache/google-chrome/Default/Cache
find -type f -print0 | xargs -0 file -i | grep -i JPEG | awk {'print $1'} | sed 's/^..//g' | sed 's/.$//g' > /tmp/FILESTOMOVE.txt
The command explained...
find -type f
= find files
xarg -0 file -i
= output the mime type
grep -i JPEG
= only show give me JPEG files
awk {'print $1'} | sed 's/^..//g' | sed 's/.$//g'
= tidy up file names
> /tmp/FILESTOMOVE.txt
= create a filelist for moving.
Just change grep -i JPEG
to PNG or GIF or FLASH etc --- the -i flag denotes case-insensitive (so you could just use grep -i jpeg / png / gif etc)
Now you have a list of files... I have a little command I use to move that list to somewhere.
#!/bin/bash
IFS=$'\n'
mkdir -p /home/yourusername/Downloads/saved_from_google_cache/
if [ -f /tmp/FILESTOMOVE.txt ];then
cat /tmp/FILESTOMOVE.txt |
while read newfile;
do
mv $newfile /home/yourusername/Downloads/saved_from_google_cache/
done
fi
Save it as move_google_cached
in /usr/bin or /usr/sbin and chmod 755 move_google_cached
1nit: Those are wild-card or glob expressions. Do you want them or regexes? (not that I have an answer for you) – Paused until further notice. – 2011-01-24T23:17:04.833
Very fine nit indeed. – Bribles – 2011-01-24T23:20:45.140
I realize now that most extensions I've seen that do pattern matching use wildcards. – Bribles – 2011-01-24T23:27:00.480
Could elaborate on which extensions do pattern matching with wildcards? - I haven't come across any. – palbakulich – 2011-02-11T23:10:23.030