Skip to content

Instantly share code, notes, and snippets.

View wefluidmedia-prog's full-sized avatar

wefluidmedia-prog

  • Joined Dec 9, 2025
View GitHub Profile
@wefluidmedia-prog
wefluidmedia-prog / drive_pdf_downloader.user.js
Last active December 9, 2025 12:47
"A DOM reconstruction tool for Canvas-based PDF viewers."
// 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
// --------------