// ==UserScript==
// @name ChatGPT Continue generating Button Clicker
// @namespace http://your-namespace.com
// @version 1.0
// @description Automatically click a dynamically created button on a webpage
// @match https://chat.openai.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Function to check if the button exists and click it
function checkButton() {
var buttons = document.querySelectorAll('button');
// Loop through all the buttons
buttons.forEach(function(button) {
// Check if the button text content matches 'Continue generating'
if (button.textContent.trim() === 'Continue generating') {
// Trigger a click event on the button
button.click();
}
});
}
// Start checking for the button at an interval (adjust as needed)
setInterval(checkButton, 2500);
})();
Flashback finansieras genom donationer frn vra medlemmar och beskare. Det r med hjlp av dig vi kan fortstta erbjuda en fri samhllsdebatt. Tack fr ditt std!