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) {