Recently I was on a topic with tons of sendvid files and was wondering how to download them all.
First you need Jdownloader 2 on your pc.
Then open the forum page with the sendvid links.
Now press f12 and go to the console tab
Copy this:
const links = document.getElementsByClassName("link link--external")
const result = []
for(const i in links){ if(links.href.includes("sendvid.com")) result.push(links.href)}
Paste on your console and press enter. You may get some errors but it's fine.
Now copy and paste this on your console:
console.log(result.join('\n'))
Then you should see all the sendvid links on your console.
Just copy and paste them in jdownloader.
First you need Jdownloader 2 on your pc.
Then open the forum page with the sendvid links.
Now press f12 and go to the console tab
Copy this:
const links = document.getElementsByClassName("link link--external")
const result = []
for(const i in links){ if(links.href.includes("sendvid.com")) result.push(links.href)}
Paste on your console and press enter. You may get some errors but it's fine.
Now copy and paste this on your console:
console.log(result.join('\n'))
Then you should see all the sendvid links on your console.
Just copy and paste them in jdownloader.