Skip to content

Commit 98bb57d

Browse files
committed
Update
1 parent c6c95fb commit 98bb57d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bypass-various-popups.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ==UserScript==
22
// @name Bypass Various Popups
3-
// @version 0.5
3+
// @version 0.6
44
// @downloadURL https://userscripts.codonaft.com/bypass-various-popups.js
55
// @match https://*.archive.org/*
66
// @match https://chat.qwen.ai/*
@@ -50,7 +50,7 @@
5050
return;
5151
}
5252

53-
if (node.tagName === 'BUTTON' && node.getAttribute('data-role') === 'parental-control-confirm-button') {
53+
if (node.tagName === 'BUTTON' && (node.getAttribute('data-role') === 'parental-control-confirm-button' || node.textContent.includes('Stay logged out'))) {
5454
setTimeout(_ => node.click(), randomPause(1000, 1500));
5555
return;
5656
}

0 commit comments

Comments
 (0)