Greasy Fork

Greasy Fork is available in English.

ChatGPT Auto Next

Automatically removes the Next and Done text boxes as soon as you log in on ChatGPT.

目前为 2023-06-11 提交的版本。查看 最新版本

// ==UserScript==
// @name         ChatGPT Auto Next
// @namespace    ChatGPTAgree
// @version      5
// @description  Automatically removes the Next and Done text boxes as soon as you log in on ChatGPT.
// @author       hacker09
// @match        https://chat.openai.com/*
// @icon         https://chat.openai.com/favicon-32x32.png
// @require      http://greasyfork.icu/scripts/21927-arrive-js/code/arrivejs.js
// @run-at       document-end
// @grant        none
// ==/UserScript==

document.arrive('.btn-neutral.ml-auto,.btn-primary.ml-auto', (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