Pagetual

Perpetual pages - powerful auto-pager script. Auto fetching next paginated web pages and inserting into current page for infinite scroll. Support thousands of web sites without any rule.

< Feedback on Pagetual

Review: Good - script works

§
Posted: 2023-04-22

Could you please update rule for javlibrary again because current rule will be break some pages as videocomments.php or userposts.php. It will clear all values of all comment from begin with page 2 to endpage. Current rule only ok with vl_update.php, vl_newrelease.php, vl_newentries.php, vl_mostwanted.php, vl_bestrated.php.

videocomments.php https://www.javlibrary.com/en/videocomments.php?v=javmeedz2i
Capture-videocomments9851f0658f359ff5.th.jpeg


userposts.php https://www.javlibrary.com/en/userposts.php?u=daveypk
Capture-userposts60fd00fe8624a15d.th.jpeg

Thank you so much.

hoothinAuthor
§
Posted: 2023-04-22
Edited: 2023-04-22

Use iframe

§
Posted: 2023-04-22

Use iframe




It's working now. Thanks for your support.

§
Posted: 2023-04-29

Sorry, could you please add 1 more action that auto click the "See All comments" button.
Capture-See-All-comments767e0792279f5165.md.png

U can check this link https://www.javlibrary.com/en/?v=javmefqm7m

Thank you so much

hoothinAuthor
§
Posted: 2023-04-29
    {
        "name": "JAVLibrary auto click comments_all",
        "url": "^https?://www\\.javlibrary\\.com/",
        "example": "https://www.javlibrary.com/en/?v=javmefqm7m",
        "include": "#video_comments_all>a",
        "autoClick": "#video_comments_all>a"
    }
§
Posted: 2023-04-30

Works great!!. Thank you for your support.

§
Posted: 2023-04-30

The lastpage from BT4G site can't loading. Can you please help me fix this thing?

Capture-BT4G-LastPage736bbdb2a2790c88.md.png

You can check this link https://bt4gprx.com/search?q=SSIS-570

Thank you so much.

hoothinAuthor
§
Posted: 2023-05-03

Sorry, I can't visit this site in my location. But I made some optimization on latest version. Try and let me know if it is fixed.

§
Posted: 2023-05-03

error message

§
Posted: 2023-05-03

Sorry, I can't visit this site in my location. But I made some optimization on latest version. Try and let me know if it is fixed.

I have checked, it's working good with the latest version. Thank you for your support.

§
Posted: 2023-05-26

@hoothin I’m sorry to bother you again but can you tell me if there is any way to use another userscript with your userscript pagetual. I have written a userscript to automatically click on links that contain text I want, this is the code of it.


// ==UserScript==
// @name Autoclick
// @match https://www.javlibrary.com/en/videocomments.php?v=*
// @exclude https://www.javlibrary.com/en/userposts.php?u=*
// @grant none
// ==/UserScript==

(function() { 'use strict';

var links = document.querySelectorAll("#content .text a");

for (var i = 0; i < links.length; i++) {
if (links[i].textContent.includes(">>-->GDRIVE<<=>>STREAMSB<<=>>STREAMHIDE<<=>>VIDOZA<<=>>MULTUP<--<<") || links[i].textContent.includes(">>-->GDRIVE<<=>>STREAMSB<<=>>MULTIUP<<=>>STREAMHIDE<<=>STREAMWISH<--<<") ) {
window.open(links[i].href, "_blank");
}
}

})();

Textcomment61bbe23a2de03c44.md.png

It only runs ok if those comments are on page 1. If I run your userscript then the next pages it can’t get data to run. Is there any way to run both userscripts together, can you help me. Thank you very much.

hoothinAuthor
§
Posted: 2023-05-26
Edited: 2023-05-26

Two ways to reach that.

  1. Add your code to pageAction with custom rule.
  2. Otherwise, enable your Autoclick userscript and click 'force join' in Pagetual.
§
Posted: 2023-05-26

Two ways to reach that.

  1. Add your code to pageAction with custom rule.
  2. Otherwise, enable your Autoclick userscript and click 'force join' in Pagetual.

I have tried adding my code to pageAction with customrule but it always reports json error when I click save. Is there anything I did wrong? This is the code I inserted to save. Can you help me see where I went wrong?

"pageAction": "var links=document.querySelectorAll("#content .text a");for(var i=0; i < links.length; i++) {if (links[i].textContent.includes(">>-->GDRIVE<<=>>STREAMSB<<=>>STREAMHIDE<<=>>VIDOZA<<=>>MULTUP<--<<")||links[i].textContent.includes(">>-->GDRIVE<<=>>STREAMSB<<=>>MULTIUP<<=>>STREAMHIDE<<=>STREAMWISH<--<<")){window.open(links[i].href,"_blank");}}"

Jsonerror1860cd0639d480e7.md.png

hoothinAuthor
§
Posted: 2023-05-26
Edited: 2023-05-26

You need to escape " to \" in json. And the document need to be replaced to doc to match the exact document on next page.

And pageAction is for custom rule on single site, not for input like that.

I think the second way is the easier way in this case. You just need to click 'force join' under command menu.

§
Posted: 2023-05-26

You need to escape " to \" in json. And the document need to be replaced to doc to match the exact document on next page.

And pageAction is for custom rule on single site, not for input like that.

I think the second way is the easier way in this case. You just need to click 'force join' under command menu.

I see so i will be used the second way. Thank for your suport.

Post reply

Sign in to post a reply.