// ==UserScript== // @name ChatGPT Auto Next // @namespace ChatGPTAgree // @version 4 // @description Automatically removes the Next and Done text boxes as soon as you login on ChatGPT. // @author hacker09 // @match https://chat.openai.com/* // @icon https://chat.openai.com/favicon-32x32.png // @require https://greasyfork.org/scripts/21927-arrive-js/code/arrivejs.js // @run-at document-end // @grant none // @downloadURL none // ==/UserScript== document.arrive('div.flex.w-full.gap-2.items-center.justify-center', (function() { //Create a new arrive function document.querySelector(".btn-neutral.ml-auto,.btn-primary.ml-auto").click(); //Click on the next btn document.querySelector(".btn-neutral.ml-auto,.btn-primary.ml-auto").click(); //Click on the next btn document.querySelector(".btn-neutral.ml-auto,.btn-primary.ml-auto").click(); //Click on the done btn })); //Finishes the async function