// ==UserScript== // @name ChatGPT Auto Next // @namespace ChatGPTAgree // @version 1 // @description Automatically removes the Next and Done text boxes as soon as you login on ChatGPT. // @author hacker09 // @match https://chat.openai.com/chat* // @icon https://chat.openai.com/favicon-32x32.png // @run-at document-end // @grant none // @downloadURL none // ==/UserScript== setTimeout(function() { 'use strict'; document.querySelector("#headlessui-portal-root").remove(); //Clicks on the Next button }, 500); //Finishes the setTimeout function