Hi. No offense, but your code's kinda. I made 2 versions that should work better- one for Tampermonkey(any userscript extension) The second one can just be pasted into the console. If you can think of any ideas or find errors, just reply. I made this code in 15 minutes, so It's not a big deal for me.
Console Version
I capped it at 4 downloads at once so your browser doesn't explode, but you can tweak that in the concurrentDownloads variable. It's also async now, so no more hanging on one bad file.
Files will be named like this: lastURLfragment_originalFileName. Sadly, making folders for each thread with plain JavaScript is impossible without extensions :(
Here's the code for the console:
'use strict';
// Function which starts downloading files when elements are loaded
const startDownloads = () => {
const names = Array.from(document.getElementsByClassName("originalNameLink"));
(async () => {
const concurrentDownloads = 4;
let activeDownloads = 0, nextIndex = 0;
const processNext = async () => {
if (nextIndex < names.length && activeDownloads < concurrentDownloads) {
activeDownloads++;
const name = names[nextIndex++];
if (name.download) {
const link = Object.assign(document.createElement('a'), {
href: name.href,
download: document.title + '_' + name.download
});
document.body.append(link);
link.click();
link.remove();
}
console.log(name.download);
activeDownloads--;
processNext();
}
};
for (let i = 0; i < concurrentDownloads && i < names.length; i++) {
processNext();
}
})();
};
// Check duplicates[Expand Post] if (document.querySelector('.originalNameLink')) {
startDownloads(); // Start immediately if elements are found
} else {
// Mutation observer
const observer = new MutationObserver((mutationsList, observer) => {
for (const mutation of mutationsList) {
if (mutation.type === 'childList'
&& mutation.addedNodes.length) {
if (document.querySelector('.originalNameLink')) {
observer.disconnect(); // Stop observing once elements are found
startDownloads(); // Start the downloads
break;
}
}
}
});
observer.observe(document.body, { childList: true, subtree: true });
}
Tampermonkey Version
Same deal, but this one auto-installs on any 8chan.moe page. Both versions stop on their own, and you'll need to set your download folder in your browser settings.
Script is in the file attached