Skip to content

Instantly share code, notes, and snippets.

View celia-vytrac's full-sized avatar

Célia Vytrac celia-vytrac

  • Huntington Bank
  • Pittsburgh
View GitHub Profile
@celia-vytrac
celia-vytrac / download-epub.js
Created April 29, 2023 14:05
Run in google chrome -> inspect element -> source -> snippets at https://play.google.com/books to download all books on page as EPUB rather than doing it manually one at a time.
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
let dots = document.querySelectorAll("[aria-label=\"More Options\"]")
for (let button of dots) {
button.click()
let exp = document.getElementById("overflow-export-ebook")