您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork镜像 is available in English.
Automatically clicks on the "Stay logged out" button on ChatGPT.
// ==UserScript== // @name ChatGPT Auto Next // @namespace ChatGPTAgree // @version 8 // @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://update.greasyforks.org/scripts/519092/arrivejs%20%28Latest%29.js // @grant none // ==/UserScript== //https://greasyforks.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