Greasy Fork is available in English.

Pagetual

Chargement automatique des pages Web paginées suivantes et insertion dans la page en cours. Prend en charge des milliers de sites Web sans aucune règle.

< Commentaires sur Pagetual

Avis: Bon - le script fonctionne correctement

§
Posté le: 22/04/2023

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.

hoothinAuteur
§
Posté le: 22/04/2023
Édité le: 22/04/2023

Use iframe

§
Posté le: 22/04/2023

Use iframe




It's working now. Thanks for your support.

§
Posté le: 29/04/2023

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

hoothinAuteur
§
Posté le: 29/04/2023
    {
        "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"
    }
§
Posté le: 30/04/2023

Works great!!. Thank you for your support.

§
Posté le: 30/04/2023

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.

hoothinAuteur
§
Posté le: 03/05/2023

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.

§
Posté le: 03/05/2023

error message

§
Posté le: 03/05/2023

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.

§
Posté le: 26/05/2023

@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.

hoothinAuteur
§
Posté le: 26/05/2023
Édité le: 26/05/2023

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.
§
Posté le: 26/05/2023

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

hoothinAuteur
§
Posté le: 26/05/2023
Édité le: 26/05/2023

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.

§
Posté le: 26/05/2023

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.

Poster une réponse

Connectez-vous pour poster une réponse.