windows-browser automatically click next page

1. Install the extension component in the browser: Shortcut Manager
2. Open the "Options" setting interface of Shortcut Manager
3. Make the following settings:
Write picture description here
4. The settings are as follows:
Write picture description here
5. Save, click "save"

javascript:
var xa=document.getElementsByTagName("a");
var xt="";
for(var i=0;i<xa.length;i++)
{
    xt=xa[i].innerText;
    xt=xt.replace(" ","");
    xt=xt.replace("&nbsp;","");
    if(xt=="下一页")
    {
     xa[i].click();
     return;
    };
}

6. The shortcut keys are set, which will affect the normal right cursor key usage during web page input.
It is recommended to use CTRL+RIGHT

Guess you like

Origin blog.csdn.net/sdlgq/article/details/55049051