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.
Sorry, could you please add 1 more action that auto click the "See All comments" button.
U can check this link https://www.javlibrary.com/en/?v=javmefqm7m
Thank you so much
{ "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" }
Works great!!. Thank you for your support.
The lastpage from BT4G site can't loading. Can you please help me fix this thing?
You can check this link https://bt4gprx.com/search?q=SSIS-570
Thank you so much.
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.
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.
@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");
}
}
})();
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.
This is url for ex
1. Comment on page 1 : https://www.javlibrary.com/en/videocomments.php?v=javliiidyu&mode=2
2. Comment on page 2: https://www.javlibrary.com/en/videocomments.php?v=javliorkqi&mode=2
Two ways to reach that.
Autoclick
userscript and click 'force join' in Pagetual.Two ways to reach that.
- Add your code to pageAction with custom rule.
- 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");}}"
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.
You need to escape
"
to\"
in json. And thedocument
need to be replaced todoc
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.
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
userposts.php https://www.javlibrary.com/en/userposts.php?u=daveypk
Thank you so much.