Created
September 18, 2023 02:12
-
-
Save JimLiu/f2917be33c3a978cbcacee6f70a45f7f to your computer and use it in GitHub Desktop.
ChatGPT自动点击"Continue generating"按钮
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
const observer = new MutationObserver(() => { | |
// Find the button of 'Continue generating' | |
[...document.querySelectorAll("button.btn")].forEach((btn) => { | |
if (btn.innerText.includes("Continue generating")) { | |
console.log("Found the button of 'Continue generating'"); | |
setTimeout(() => { | |
console.log("Clicked it to continue generating after 1 second"); | |
btn.click(); | |
}, 1000); | |
} | |
}); | |
}); | |
// Start observing the dom change of the form | |
observer.observe(document.forms[0], { | |
attributes: false, | |
childList: true, | |
subtree: true, | |
}); | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment