This file contains hidden or 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
| // Secure, Bulletproof PDF Downloader (Sorts & Compresses) | |
| (async function() { | |
| 'use strict'; | |
| // --- CONFIG --- | |
| const JSLIB_URL = 'https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.debug.js'; | |
| const IMG_QUALITY = 0.8; // 0.8 is the sweet spot for 500+ pages. 1.0 will crash Chrome. | |
| const PROCESS_DELAY = 20; // ms to wait between pages to keep UI responsive | |
| // -------------- |