mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2025-02-07 10:24:09 +05:00
fix stfly 2nd step
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/122
This commit is contained in:
parent
c7035d35f6
commit
9c68cb4f72
3 changed files with 10 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 92.9.7
|
// @version 92.9.8
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 92.9.7
|
// @version 92.9.8
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
@ -2486,6 +2486,10 @@
|
||||||
if (checkGoogleRecaptchaSolved() && checkCloudflareCaptchaSolved()) {
|
if (checkGoogleRecaptchaSolved() && checkCloudflareCaptchaSolved()) {
|
||||||
buttonTexts = ['Verify', 'Click here to verify'];
|
buttonTexts = ['Verify', 'Click here to verify'];
|
||||||
clickAvailableButtons(buttonTexts);
|
clickAvailableButtons(buttonTexts);
|
||||||
|
setTimeout(function() {
|
||||||
|
buttonTexts = ['Next Post', 'Next step', 'Get to next step', 'Go next', 'Continue'];
|
||||||
|
clickAvailableButtons(buttonTexts);
|
||||||
|
}, 2000);
|
||||||
}
|
}
|
||||||
} else if (currentStep.includes('step 3')) {
|
} else if (currentStep.includes('step 3')) {
|
||||||
if (document.querySelector('.progress-done').innerHTML.trim() === '0%'){
|
if (document.querySelector('.progress-done').innerHTML.trim() === '0%'){
|
||||||
|
|
|
@ -935,6 +935,10 @@
|
||||||
if (checkGoogleRecaptchaSolved() && checkCloudflareCaptchaSolved()) {
|
if (checkGoogleRecaptchaSolved() && checkCloudflareCaptchaSolved()) {
|
||||||
buttonTexts = ['Verify', 'Click here to verify'];
|
buttonTexts = ['Verify', 'Click here to verify'];
|
||||||
clickAvailableButtons(buttonTexts);
|
clickAvailableButtons(buttonTexts);
|
||||||
|
setTimeout(function() {
|
||||||
|
buttonTexts = ['Next Post', 'Next step', 'Get to next step', 'Go next', 'Continue'];
|
||||||
|
clickAvailableButtons(buttonTexts);
|
||||||
|
}, 2000);
|
||||||
}
|
}
|
||||||
} else if (currentStep.includes('step 3')) {
|
} else if (currentStep.includes('step 3')) {
|
||||||
if (document.querySelector('.progress-done').innerHTML.trim() === '0%'){
|
if (document.querySelector('.progress-done').innerHTML.trim() === '0%'){
|
||||||
|
|
Loading…
Reference in a new issue