ChatGPT Auto Next

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

Fra 14.04.2023. Se den seneste versjonen.

// ==UserScript==
// @name         ChatGPT Auto Next
// @namespace    ChatGPTAgree
// @version      2
// @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
// @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
长期地址
遇到问题?请前往 GitHub 提 Issues。