Download All Files from Index within same folder

  • Indiasocialbook blocked ?Unblock it by downloading free vpn from -- (HERE)

  • You Must Read our New Rules and Guidelines (HERE)

Ruchika oberoi

Administrator
Staff member
Mar 27, 2022
5,286
132
63
I have face this issue, so I have my solution for it :)

Here is a small trick to download all the files from any index.

open the page

You must be registered for see images attach


make sure pop up is allowed for the page
paste the javscript in console
var a = document.getElementsByTagName('a');

for (var idx= 0; idx < a.length; ++idx){

if(a[idx].className == "list-group-item-action"){

console.log("I AM NOOB",a[idx].href.slice(0,a[idx].href.length -7));

window.open(a[idx].href.slice(0,a[idx].href.length -7),"");

}

}

hit enter

then if everything goes fine then files will get download

You must be registered for see images attach


The code is self explanatory, so change the class name according to the index and make it work.

P.S I have tried and tested, and it might not work if file download quota is exceeded :)
 
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock