Endless Pixiv Pages

Loads more pixiv pages as you scroll down.

< Feedback on Endless Pixiv Pages

Question/comment

§
Posted: 2017-04-21
Edited: 2017-04-23

[Suggestion] for this amazing script

Thank you for this incredible script

If you can add these features it will make this script great

That can easily done with a few codes, if you made it officially it will help other users

All features explained in attached images

Thanks In Advance! ? ❤️ ?

Mango 2Author
§
Posted: 2017-04-23

If you've already implemented it yourself, could you show me the modified code itself?

§
Posted: 2017-04-23

My Pleasure. :smiley:

I'm still noob in coding, and pretty sure if you edit the script will be better than me ✨ ⚡️ ❄️

The script was too long for Greasyfork so I have to upload it on other site

https://gitlab.com/Another_Dimension/Pixiv-Stuff/blob/master/Endless-Pixiv-Pages

§
Posted: 2017-04-23
Edited: 2017-04-23

Don't forget to give me a reply.
Whether decided to add these features or not, It's up to you to decide.

Mango 2Author
§
Posted: 2017-04-23

Alright, I've incorporated your suggestions (with a little tweaking), but I'll give another day or two in case I think of other things to change.

§
Posted: 2017-04-24

Great news, Can't wait to see the new version.

Thank you for taking this suggestion.

§
Posted: 2017-04-25
Edited: 2017-04-28

Oh, Thank you so much for this update.

I have a little tweaking for you. Also It's up to you.

You can Separate (Results and Total Pages)

//  Instead of this line
    resultBadge.textContent += " ("+totalPages+" pages)";

//  You can use this lines
//  Separate results and total pages (something like this)
    resultBadge.setAttribute("class","count-badge-handle");
    resultBadge.style = 'margin-left: 15px;';
    resultBadge.innerHTML = '<span class="count-badge Results">'+resultBadge.textContent+'</span><span class="count-badge Pages" style="margin: 0px 5px;">'+totalPages+' Pages</span>';


Also, You need to add to "Load All Link Style" cursor:pointer; Because when mouse hover on "load All Pages" courses will be like text typing courses instead of clickable link

//  Instead of this line
    loadAllLink.style = 'position:absolute; right:10px;'; 

//  You can use this line
    loadAllLink.style = 'position:absolute; right:10px; cursor:pointer;';

Post reply

Sign in to post a reply.