Note: Following tool assumes you are using airpm free plugin, and using "complete book in one click" prompt.
Text Modifier Tool:
You can also find simplied working version online at
Javascript Code that presses continue button after every 45 seconds or 20 seconds (Input-able):
Note: You have to paste the following code via click on chatgpt webpage, right click->Inspect-> console -> paste this code, (you can also play with 25milliseconds or 20 milliseconds, as per your needs)
let tries = 0;
const maxTries = 17;
const continueButton = document.getElementById("continueWritingButton");
const clickContinue = () => {
tries++;
if (tries <= maxTries) {
continueButton.click();
} else {
clearInterval(interval);
}
};
// First click immediately
clickContinue();
// Then start the interval with 45 seconds duration
const interval = setInterval(clickContinue, 25 * 1000); // 25 seconds in milliseconds
JavaScript Code to get make previous content copy-pasteable
```
// Get all div elements
var divs = document.getElementsByTagName("div");
// Loop through all div elements
for (var i = 0; i < divs.length; i++) {
var div = divs[i];
// Check if the div contains the specified content
if (div.textContent.trim() === "Continue writing please\n\nPlease write in English language.") {
// Remove the div
div.parentNode.removeChild(div);
}
}
// Get all div elements with the specified class
var divs = document.querySelectorAll('div.font-semibold.select-none');
// Loop through all div elements
divs.forEach(function(div) {
// Check if the div contains the exact text "ChatGPT"
if (div.textContent.trim() === "ChatGPT") {
// Remove the div
div.parentNode.removeChild(div);
}
});
// Get all div elements with the specified class
var divs = document.querySelectorAll('div.font-semibold.select-none');
// Loop through all div elements
divs.forEach(function(div) {
// Check if the div contains the exact text "ChatGPT"
if (div.textContent.trim() === "Continue writing please\n") {
// Remove the div
div.parentNode.removeChild(div);
}
});
```