Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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);
}
@raindog308
Copy link

Just tested with Firefox 109 on macOS Ventura 13.2 and it worked fine.

The suggestion by @mikkovedru to set a download file is vital, otherwise you'll be prompted to save each page.

BTW, on macOS you can assemble PDFs using Preview. Just select all files and open with Preview, check page order because sometimes a few are mixed up, and then export as PDF.

@UrbanIXOrbit
Copy link

why not create a browser extension for this?

@Rangerrick2018
Copy link

Hey, I've gotten as far as setting up the bookmarklet, I'm just stuck trying to find the 1st-page url while inspecting the element. I don't understand code, can anyone help a bit?

Screenshot:
https://imgur.com/a/toMcp61

Book link:
https://archive.org/details/waffensshitlerse00stei/page/n7/mode/2up

Book title:
The Waffen SS : Hitler's elite guard at war 1939-1945

I'm using chrome, Ive pasted the code and I get the prompt asking me if I am on the page with JUST the first image. Any help would be greatly appreciated.

@cemerson
Copy link
Author

cemerson commented Mar 22, 2023

@Rangerrick2018 Normally when just 1 image downloads it is because you didn't set the site to allow multiple downloads - sometimes this prompt can be easy to miss/dismiss.

Anyhow - it looks like someone else has already pulled that one here :)

Interesting book btw - may add that to my list to check out.

@KOFESSE
Copy link

KOFESSE commented Apr 4, 2023

thank you verry much. But I can't enderstand. Please help me to download this book: https://archive.org/details/chevre19071919190000aubi
Thanks in advance.

@etozhepizteh
Copy link

etozhepizteh commented Apr 5, 2023

Thanks for your code! It works well on loan-free books.
Unfortunately, archive seems to interrupt the loan after a number of pages have been downloaded and sends an error that just creates new empty tabs in the browser. Have you encountered this issue yet? Maybe there is a way to overcome it by raising the time interval between the downloads somehow?
Anyway, if you are still interested in this project, I would be really glad to know your opinion as to how handle this issue.

UPD: Weirdly enough, Brave browser doesn't suffer from this issue, everything goes like clockwork. I have encountered difficulties only on Mozilla.

@mabba18
Copy link

mabba18 commented Apr 14, 2023

Thanks for this great tool. As an alternate suggestion, I just put the images into a zip file, renamed it .cbz and will use a Comic viewer to read.

@xwx1829
Copy link

xwx1829 commented Apr 21, 2023

whiteboard

@RaveHunter05
Copy link

It worked pretty well, thank you so much!

@cemerson
Copy link
Author

cemerson commented May 4, 2023

Thanks for this great tool. As an alternate suggestion, I just put the images into a zip file, renamed it .cbz and will use a Comic viewer to read.

Nice idea!

@cemerson
Copy link
Author

cemerson commented May 4, 2023

Thanks for your code! It works well on loan-free books. Unfortunately, archive seems to interrupt the loan after a number of pages have been downloaded and sends an error that just creates new empty tabs in the browser. Have you encountered this issue yet? Maybe there is a way to overcome it by raising the time interval between the downloads somehow? Anyway, if you are still interested in this project, I would be really glad to know your opinion as to how handle this issue.

UPD: Weirdly enough, Brave browser doesn't suffer from this issue, everything goes like clockwork. I have encountered difficulties only on Mozilla.

Nice to know Brave still working ok. I do expect at some point this solution will break due to changes they make on the site or just general javascript deprecation. If/when that happens I may try to fix it if I get inspired I supposed. Here's hoping that doesn't happen for a while though! :)

@shivangsorout
Copy link

Worked in firefox for me!! But not in chrome I don't know why though!!

@akfoutkonnen
Copy link

can you please help me with this book: https://archive.org/details/alternativemedic0000cros/page/n11/mode/2up
after a few page counts on chrome it returns failed - no file
TIA

@shivangsorout
Copy link

can you please help me with this book: https://archive.org/details/alternativemedic0000cros/page/n11/mode/2up after a few page counts on chrome it returns failed - no file TIA

Use firefox!! In first try it won't work but after first try it worked for me!!

@ulissesBR
Copy link

ulissesBR commented May 31, 2023

I tried in both Chrome, Brave, and Firefox, with no success. I type the number of pages and absolutely nothing happens next... =/
I followed the instructions step by step but even doing it more than one time, the result is the same =/.
Is there anyone experiencing the same problem?

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