@lueluelueChatGPT回复计时器,看看GPT每次回复都需要多久~ 中发帖

// ==UserScript==
// @name ChatGPT回复计时器
// @namespace http://tampermonkey.net/
// @version 2.0
// @description Timer for ChatGPT responses
// @author schweigen
// @match https://chatgpt.com/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

// 全局变量定义
let startTime = null; // 记录开始时间的时间戳
let timerInterval = null; // 计时器的间隔ID
...