Greasy Fork is available in English.
Automatically clicks on the "Stay logged out" button on ChatGPT.
当前为
// ==UserScript==
// @name ChatGPT Auto Next
// @namespace ChatGPTAgree
// @version 7
// @description Automatically clicks on the "Stay logged out" button on ChatGPT.
// @author hacker09
// @match https://chatgpt.com/*
// @icon https://chatgpt.com/favicon-32x32.png
// @require http://greasyfork.icu/scripts/21927-arrive-js/code/arrivejs.js
// @grant none
// ==/UserScript==
//http://greasyfork.icu/en/scripts/461721/versions/new
document.arrive('.text-token-text-secondary.underline', (function(el) { //Create a new arrive function
el.click(); //Click on the "Stay logged out" btn
})); //Finishes the async function