您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Automatically removes the Next and Done text boxes as soon as you login on ChatGPT.
当前为
// ==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 http://greasyfork.icu/scripts/21927-arrive-js/code/arrivejs.js // @run-at document-end // @grant 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