This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Edit the 2 values below and run in browser console | |
const bookUrl = 'https://plus.pearson.com/eplayer/pdfassets/prod1/XXXXXXX/UUIDXXXXXXXXXXX' | |
const lastPageNum = 1431; | |
const download = (filename, url) => { | |
const element = document.createElement('a'); | |
element.setAttribute('href', url); | |
element.setAttribute('download', filename); |