Greasy Fork

Greasy Fork is available in English.

ChatGPT Auto Next

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

目前为 2023-03-12 提交的版本。查看 最新版本

// ==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
// ==/UserScript==

setTimeout(function() {
  'use strict';
  document.querySelector("#headlessui-portal-root").remove(); //Clicks on the Next button
}, 500); //Finishes the setTimeout function