How To Download View Only/Protected PDF Files From the Google Drive..!!

 How To Download View Only/Protected PDF Files From the Google Drive..!!

If You Worried about "How To Download View Only/Protected PDF Files From the Googel Drive...??", If So then don't worry about that because today I brought a solution for that,So be with till the last I will give you a proper solution for Downloading the View Only/Read Only/Protected PDF Files from the google drive.


Script To Download The View Only/Protected PDF Files :-


let jspdf = document.createElement("script");

jspdf.onload = function () {

let pdf = new jsPDF('p', 'mm', [1000, 625]);
let elements = document.getElementsByTagName("img");
for (let i in elements) {
let img = elements[i];
console.log("add img ", img);
if (!/^blob:/.test(img.src)) {
console.log("invalid src");
continue;
}
let can = document.createElement('canvas');
let con = can.getContext("2d");
can.width = img.width;
can.height = img.height;
con.drawImage(img, 0, 0);
let imgData = can.toDataURL("image/jpeg", 1.0);
pdf.addImage(imgData, 'JPEG', 0, 0);
pdf.addPage();
}

pdf.save("download.pdf");
};

jspdf.src = 'https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.5.3/jspdf.debug.js';
document.body.appendChild(jspdf);







The  JS Code (Script which is written in the JavaScript) is use to download the View Only/Read Only/ Protected Pdf File From the google drive. This above JS Code will help you to download the pdf files which are present in the google drive with a protected password. 

Steps To Download The Protected PDF Files :-

Step 1 :  Open the PDF File in the Google Chrome.

Step 2 :  Go Through the pdf file completely(scroll till the last page).

Step 3 :  Open the Developer tools by clicking the F12 Button from the keyboard.

Step 4 :  In Developer tools click on  "Console" and then click on  "Clear Console" option.

Step 5 : Once After clearing the console Paste the Script (Given above) and Hit Enter for the further process.

Done. once you hit enter after pasting the script then it will download the pdf file.


That's all for now folks! I hope I have explained it well. In case of any queries, just reach out to me by commenting below. 🙂

Take care, and I'll talk to you guys soon!

Peace.

Comments