您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
ChatGPT维持会话
当前为
// ==UserScript== // @name KeepChatGPT // @description ChatGPT维持会话 // @version 1.0 // @author xcanwin // @namespace https://github.com/xcanwin/KeepChatGPT/ // @supportURL https://github.com/xcanwin/KeepChatGPT/ // @license GPL-2.0-only // @match *://chat.openai.com/chat* // @grant none // @run-at document-idie // ==/UserScript== (function() { 'use strict'; window.ifrurl = "/api/auth/session"; setInterval(function() { fetch(window.ifrurl); }, 1000 * 30); })();