This commit is contained in:
2025-07-27 19:15:12 +09:00
parent ee7cee7638
commit 867ee66499
7 changed files with 181 additions and 58 deletions
@@ -423,7 +423,8 @@ function gotoNext() {
if(e.hasAttribute("href") &&
(
(e.getAttribute("href").search("page=2") > -1 && location.href.search("page") < 0) ||
(e.getAttribute("href").search("page=3") > -1 && location.href.search("page=2") > 0)
(e.getAttribute("href").search("page=3") > -1 && location.href.search("page=2") > 0) ||
(e.getAttribute("href").search("page=4") > -1 && location.href.search("page=3") > 0)
)) {
targetElement = e
@@ -432,9 +433,9 @@ function gotoNext() {
if(targetElement !== null) {
targetElement.click()
} else {
location.href = "https://naver.com"
// location.href = "https://naver.com"
}
}, 5000);
}, 15000);
}
} catch (e) {