// ==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 https://greasyfork.org/scripts/21927-arrive-js/code/arrivejs.js // @grant none // @downloadURL none // ==/UserScript== //https://greasyfork.org/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