Turn a page of thumbnails into high-res images
< Feedback on Eza's Gallery Swallower
Great script, but inkbunny has a bug(ish). I only tested one page, but here is the change:
Under the statement if( domain( 'inkbunny.net' ) )
if( domain( 'inkbunny.net' ) )
This: .replace( /thumbnails\/[a-z]*/, 'files/full' )
.replace( /thumbnails\/[a-z]*/, 'files/full' )
Should be replaced with: .replace( /files\/[a-z]*/, 'files/full' )
.replace( /files\/[a-z]*/, 'files/full' )
This will load the full image, and not the thumbnail. I updated it for me locally, but a global update might be great for others 🙂
I tested in a few browsers and always got /thumbnail/etc. But I widened the regex to cover both cases.
Sign in to post a reply.
Great script, but inkbunny has a bug(ish). I only tested one page, but here is the change:
Under the statement
if( domain( 'inkbunny.net' ) )
This:
.replace( /thumbnails\/[a-z]*/, 'files/full' )
Should be replaced with:
.replace( /files\/[a-z]*/, 'files/full' )
This will load the full image, and not the thumbnail. I updated it for me locally, but a global update might be great for others 🙂