From 578f3f96ad23f6cb626ab15497ec462494dd2139 Mon Sep 17 00:00:00 2001 From: lunaticbum Date: Mon, 29 Dec 2025 18:11:39 +0900 Subject: [PATCH] .. --- app/src/main/assets/extensions/my_extension/messaging.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app/src/main/assets/extensions/my_extension/messaging.js b/app/src/main/assets/extensions/my_extension/messaging.js index 1c39ccce..193bc6f9 100644 --- a/app/src/main/assets/extensions/my_extension/messaging.js +++ b/app/src/main/assets/extensions/my_extension/messaging.js @@ -458,9 +458,14 @@ function gotoNext() { // 1. 다음 페이지 링크를 찾았을 경우 if (attempts > 3 && targetElement) { console.log(`[${attempts}초] ✅ 다음 페이지 링크를 찾았습니다. 클릭합니다.`); - toast(`[${attempts}초] ✅ 다음 페이지 링크를 찾았습니다. 클릭합니다.`) + toast(`[${attempts}초] ✅ 다음 페이지 링크를 찾았습니다.`) clearInterval(findAndClickInterval); // 반복을 중단 - targetElement.click(); // 링크 클릭 + + if (confirm("다음 페이지로 이동 하실?!")) { + targetElement.click(); // 링크 클릭 + } else { + + } } // 2. 시간(15초)이 초과되었을 경우 else if (attempts >= maxAttempts) {