We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6c95fb commit 98bb57dCopy full SHA for 98bb57d
1 file changed
bypass-various-popups.js
@@ -1,6 +1,6 @@
1
// ==UserScript==
2
// @name Bypass Various Popups
3
-// @version 0.5
+// @version 0.6
4
// @downloadURL https://userscripts.codonaft.com/bypass-various-popups.js
5
// @match https://*.archive.org/*
6
// @match https://chat.qwen.ai/*
@@ -50,7 +50,7 @@
50
return;
51
}
52
53
- if (node.tagName === 'BUTTON' && node.getAttribute('data-role') === 'parental-control-confirm-button') {
+ if (node.tagName === 'BUTTON' && (node.getAttribute('data-role') === 'parental-control-confirm-button' || node.textContent.includes('Stay logged out'))) {
54
setTimeout(_ => node.click(), randomPause(1000, 1500));
55
56
0 commit comments