Skip to content

Instantly share code, notes, and snippets.

@hauvuhd
hauvuhd / tai-file-bi-chan-download-tu-google-drive
Created February 23, 2020 18:58
Tải file bị chặn download từ Google Drive - PDF
let jspdf = document.createElement("script");
jspdf.onload = function () {
let pdf = new jsPDF();
let elements = document.getElementsByTagName("img");
for (let i in elements) {
let img = elements[i];
if (!/^blob:/.test(img.src)) {
continue;