ChatGPT Auto Next

Automatically clicks on the "Okay, let’s go" button as soon as you log in on ChatGPT.

目前為 2023-10-02 提交的版本,檢視 最新版本

// ==UserScript==
// @name         ChatGPT Auto Next
// @namespace    ChatGPTAgree
// @version      6
// @description  Automatically clicks on the "Okay, let’s go" button as soon as you log in on ChatGPT.
// @author       hacker09
// @match        https://chat.openai.com/*
// @icon         https://chat.openai.com/favicon-32x32.png
// @require      https://greasyfork.org/scripts/21927-arrive-js/code/arrivejs.js
// @run-at       document-end
// @grant        none
// ==/UserScript==

document.arrive('.btn-neutral.ml-auto,.btn-primary', (function() { //Create a new arrive function
  document.querySelector(".justify-end > button").click(); //Click on the Okay, let’s go btn
})); //Finishes the async function