File :-(, x, )
Anonymous
I'm not sure where to put this, so...

have created a quick script for Greasemonkey that converts all the links on thumbnails in jj.am to proper image links. This way now I can use Down Them All to get all the images in a page. It was quick and dirty but it works.

Maybe it already exists, but it was faster and cooler to just make one.

You can find it here if you want:

http://userscripts.org/scripts/show/36334
>> Anonymous
Of course, you can also use to right-click + Save Link As if you so desire.

The source:

var list = document.getElementsByTagName("a");
for (var i = 0; i < list.length; i++) {
var a = list[i];
var href = a.getAttribute("href") + '';
if ( href.match( '.jpg.html$' ) ){
a.setAttribute( 'href', href.substring( 0, href.length - 5 ) );
}
}

As I said, dirty but works.