Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cemerson/043d3b455317d762bb1378aeac3679f3 to your computer and use it in GitHub Desktop.
Save cemerson/043d3b455317d762bb1378aeac3679f3 to your computer and use it in GitHub Desktop.
Archive.org Scanned Book Downloader Bookmarklet

Archive.org Scanned Book Downloader Bookmarklet

A simple "1-click" javascript approach to downloading a scanned book from archive.org to read at your leisure on the device of your choosing w/out having to manually screenshot every pages of the book by hand. In short it's a glorified "Save Image As..." approach but consolidated down to "1 click". BTW there may be a much better option than this out there - I just built this as an autistic project to see if it would work.

Demo Video

Archive.org SBDL Demo

Obligatory Legal/Disclaimer:

By using this script you agree to delete all book files/images after your 1 hour or 14 days is up! I don't support using this script for any other use cases. After all, none of us have ever kept a library book past it's return date, right?

NOTES:

  • Scanned Books Only: This only works on "scanned" books where each page is an image file. This means A) you won't be able search the text of the book and B) the book file size will be tens of megabytes not kilobytes like an EPUB/etc. Given the above always try to find the book in text format first (epub, etc) before using this method.
  • Compatibility: As of 11/2021 I've tested this on a few books w/no problems so it seems pretty stable but if someone finds a book that doesn't work w/it LMK in comments. It's very possible (likely?) at some point archive.org will change something that either requires some adjustments to this script and/or makes this approach no longer possible. Feel free to recommend tweaks or fixes if anyone has any suggestions btw.
  • Borrowed and?: I've only tested this for "Borrowed" books but I suppose you could use on Free books too - although normally those already offer a PDF download so not really a reason to do that.
  • Support: This is just a basic javascript thing so there's no real danger here but I can't/don't provide any support if this doesn't work for you and/or your browser crashes while trying it.

Instructions

  1. Create a bookmarklet in your browser using the code below via https://mrcoles.com/bookmarklet/
  2. Go to archive.org and "Borrow" the book for 1 hour or 14 days (only tested with the 1 hour)
  3. Once the borrowed book page reloads click zoom icon to zoom into the 1st page of book at least 2 times (otherwise you'll get low-res version of book images)
  4. Write down or make a mental note of how many pages the book has
  5. Use browser's "Inspect Element" on first page of book to find the page image URL and right-click to "open link" in a new tab.
  6. Once on the new tab looking at the book's 1st page image, click the bookmarklet button made in step 1 and type in the number of pages the book has that you noted in step 4. Tip: Add 5-10 more pages than the book has just in case the covers/final pages of the book actually add up to a higher number.
  7. As soon as you click 'OK' after entering the page count watch for the browser's "Allow Multiple Downloads from this Site" type message in your browser and click 'Accept' or whatever. Otherwise the process will fail. Some browsers may not do this - so disregard if this isn't an issue w/your browser.
  8. Wait for the process to finish - a 300 page book takes around 3-5 minutes. Note: You can minimize the browser tab/window while the pages are downloading.
  9. Once all pages have been downloaded an "alert" message will popup when the pages have all been downloaded.
  10. At this point you'll have a bunch of book page images in your Downloads folder like mybookwhatever_000.jpg, mybookwhatever_001.jpg etc.
  11. If you want to make a PDF of the pages go to https://tools.pdf24.org/en/images-to-pdf and drag all these images into the upload area. When the images are uploading click the "A-Z sort" button at the bottom of the page to make sure the pages sort by filename.
  12. Click the "Create PDF" button when it's ready and download the PDF when it's done.
  13. Now you can enjoy reading the book at your leisure, wherever you want without having to wait for the annoying page load times of archive.org, etc!
function downloadFile(filePath){
    var link=document.createElement('a');
    link.href = filePath;
    link.download = filePath.substr(filePath.lastIndexOf('/') + 1);
    link.click();
}

function getNewURL(pageCount){
	if(pageCount == null) pageCount = 1;
	var url = document.location.href; 	
	var urlParts = url.split(".jp2");	
	var urlPrefixParts = urlParts[0].split("_");	
	var urlPageNumber = urlPrefixParts[urlPrefixParts.length-1];	
	var nextPageNumberString = String(parseInt(urlPageNumber)+pageCount).padStart(4,'0');  	
	var newURLPrefix = ''; 
	for(var p=0;p<urlPrefixParts.length-1;p++) newURLPrefix += urlPrefixParts[p] + '_';	
	var newURL = newURLPrefix + nextPageNumberString + '.jp2' + urlParts[1];	
	return newURL;
}

var confirm1 = confirm('Archive.org Scanned Book Downloader:\n\nReady Check: Are you on a window/tab viewing *just* the IMAGE of the 1st page of the book? If not cancel and run this when you are.');
if(!confirm1) return false;
var pageCount = prompt('Archive.org Scanned Book Downloader:\n\nHow many pages are in this book?');
var pageCounter = 0;
var pageInterval = null;
if(pageCount == null || pageCount == undefined || parseInt(pageCount) == NaN){
   console.log('no page count provided.. giving up.');
}else{
	pageInterval = window.setInterval(function(){	
		if(pageCounter > parseInt(pageCount)){
			window.clearInterval(pageInterval);
			pageInterval = null;			
			console.log('downloading done!..');			
			var pdfTime = confirm('All pages downloaded! (some files may still be downloading though)\n\nWould you like to go to a site to create a PDF with them now?');
			if(pdfTime){
				window.open('https://tools.pdf24.org/en/images-to-pdf','_blank');			
			}
		}else{
			var nextFile = getNewURL(pageCounter);
			downloadFile(nextFile);
			console.log('downloading next page! (' + nextFile + ')');
		}
		pageCounter += 1;
	},900);
}
@amochkin
Copy link

Fixes and refactor:

function downloadFile(filePath) {
	const link = document.createElement('a');
	link.href = filePath;
	link.download = filePath.substring(filePath.lastIndexOf('/') + 1);
	link.click();
}

function getNewURL(pageCount) {
	if (!pageCount) pageCount = 1;
	let url = document.location.href;
	url = url.replace(/_(\d+)\.jp2/, '_' + ('0000' + pageCount).slice(-4) + '.jp2');
	return url;
}

if (
	confirm(
		'Archive.org Scanned Book Downloader:\n\nReady Check: Are you on a window/tab viewing *just* the IMAGE of the 1st page of the book? If not cancel and run this when you are.',
	)
) {
	const pageCount = prompt('Archive.org Scanned Book Downloader:\n\nHow many pages are in this book?');
	let pageCounter = 0;
	let pageInterval = null;
	if (pageCount == null || isNaN(parseInt(pageCount))) {
		console.log('no page count provided.. giving up.');
	} else {
		pageInterval = window.setInterval(function () {
			if (pageCounter > parseInt(pageCount)) {
				window.clearInterval(pageInterval);
				pageInterval = null;
				console.log('downloading done!..');
				if (
					confirm(
						'All pages downloaded! (some files may still be downloading though)\n\nWould you like to go to a site to create a PDF with them now?',
					)
				) {
					window.open('https://tools.pdf24.org/en/images-to-pdf', '_blank');
				}
			} else {
				const nextFile = getNewURL(pageCounter);
				downloadFile(nextFile);
				console.log('downloading next page! (' + nextFile + ')');
			}
			pageCounter += 1;
		}, 900);
	}
}

@cockfighter
Copy link

cockfighter commented Feb 17, 2024

How are you activating the bookmarklet in one tab while still "viewing just at the IMAGE" in another tab (w Chrome osx)?
toggling between tabs deactivates Bookmarklet prompts (e.g. 'how many pages')? Otherwise I keep getting error message

error msg(s): Could not download - No file

Also, anyone else having difficulty isolating the specific string in Inspect > Elements (like me) the very same image (location) is also available from the Sources tab (usually in the last, or near last, folder).
fyi: images appear to be .jp2

edit: i can only get it to generate/download: download (1).html docs (as many as indicated in requested page count). I installed Brave (i.e. same browser utilized in demo video) with same results. any help?

@Enissay
Copy link

Enissay commented Feb 28, 2024

I confirm it is not working anymore:

  • borrow the book for 1hr
  • open the frist page/image in new tab
  • start the macro (10 for test xD)
  • All downloads fail
  • when I go back to the book page, somehow, my borrow expires!

I tried 3+ times the above and always the same result... Quite sad :<

@Alchemytr
Copy link

I confirm it is not working anymore:

* borrow the book for 1hr

* open the frist page/image in new tab

* start the macro (10 for test xD)

* All downloads fail

* when I go back to the book page, somehow, my borrow expires!

I tried 3+ times the above and always the same result... Quite sad :<

What a shame! I'm on mobile right now so sorry I've missed something already detailed in the comments but curious to know if anyone knows what might've changed that's causing the macro to fall over?

@simonives
Copy link

simonives commented Apr 17, 2024 via email

@Alchemytr
Copy link

Can you provide some more detail e.g. book tested on, element copied etc. I successfully used this this morning for an out of print book without issue.

-- **************************************This email is from SimonIves.com http://www.simonives.com based in Australia. Please delete this email if you are not the intended recipient. **************************************

Interesting. I was going to go test it out now myself.
If anyone's able to ID a title that doesn't work, I've found some alternative scripting tools that use a similar method but might work.

@Krando
Copy link

Krando commented Apr 21, 2024

Can you provide some more detail e.g. book tested on, element copied etc. I successfully used this this morning for an out of print book without issue.

-- **************************************This email is from SimonIves.com http://www.simonives.com based in Australia. Please delete this email if you are not the intended recipient. **************************************

Interesting. I was going to go test it out now myself. If anyone's able to ID a title that doesn't work, I've found some alternative scripting tools that use a similar method but might work.

This doesn't work for me, can you elaborate more on the alternative scripting tools that can assist me in getting a book from 1913? I would be very much indebted to you for the favor. Indeed, everybody here would be indebted and be very much thankful.

@DarkJester89
Copy link

Hi, I was trying to get this book, https://archive.org/details/motionsduringtri00spel/mode/2up, but its image page was generated failed downloads after I clicked "allowed".

Any guidance? Thank you in advance.
Image page
Failed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment