Poipiku Downloader

Download images or text from Poipiku

< Feedback on Poipiku Downloader

Review: OK - script works, but has bugs

§
Posted: 2025-07-02

This code isn't works now, so here are the steps how to fix.

Please locate the following code block (lines 295-305):

$page
.find(logined ? ".DetailIllustItemImage" : ".IllustItemThumbImg")
.each(function () {
const src = $(this).attr("src");

if (src && !/^\/img/.test(src)) {
list.push(window.location.protocol + src);
}
});


Please replace this code block with the following code:


$page
.find(logined ? ".DetailIllustItemImage" : ".IllustItemThumbImg")
.each(function () {
const src = $(this).attr("src");

if (src) {
let normalizedSrc = src;
if (src.startsWith("//")) {
normalizedSrc = window.location.protocol + src;
} else if (src.startsWith("/")) {
normalizedSrc = window.location.origin + src;
}
list.push(normalizedSrc);
}
});

§
Posted: 2025-07-18

thank you very much!!!!

do you have a solution in case the page requires a password? it started working with you fix (thank you!) but not if it requires a password - the input field just disappeared

§
Posted: 2025-10-12

Yeah, I couldn't figure out how to get it to work either. It still says "failed to create zip" even if I try to save individually

§
Posted: 2025-10-26

I also experienced "failed to create zip" when downloading images with password too :((

Post reply

Sign in to post a reply.