From 03c4dd543bb471c2cc2a77aa0ee74c1b25053c65 Mon Sep 17 00:00:00 2001 From: xcanwin Date: Tue, 22 Aug 2023 05:38:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E9=AB=98=E8=A8=80=E6=97=A0=E4=B8=8D?= =?UTF-8?q?=E5=B0=BD=E7=9A=84=E5=85=BC=E5=AE=B9=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- KeepChatGPT.user.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/KeepChatGPT.user.js b/KeepChatGPT.user.js index 120b29d..12ef89f 100644 --- a/KeepChatGPT.user.js +++ b/KeepChatGPT.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name KeepChatGPT // @description 这是一款提高ChatGPT的数据安全能力和效率的插件。并且免费共享大量创新功能,如:自动刷新、保持活跃、数据安全、取消审计、克隆对话、言无不尽、净化首页、展示大屏、展示全屏、拦截跟踪、日新月异等。让我们的AI体验无比安全、顺畅、丝滑、高效、简洁。 -// @version 17.7 +// @version 17.8 // @author xcanwin // @namespace https://github.com/xcanwin/KeepChatGPT/ // @supportURL https://github.com/xcanwin/KeepChatGPT/ @@ -1226,9 +1226,12 @@ nav.flex .transition-all { const speakCompletely = function() { if (gv("k_speakcompletely", false) === true) { - const continue_svg_selector = `form.stretch .justify-center polygon[points="11 19 2 12 11 5 11 19"]`; + const continue_svg_selector = `form.stretch .justify-center polygon[points="11 19 2 12 11 5 11 19"]:not(.ct_clicked)`; if ($(continue_svg_selector)) { - findParent($(continue_svg_selector), `button`).click(); + setTimeout(function() { + findParent($(continue_svg_selector), `button`).click(); + $(continue_svg_selector).classList.add('ct_clicked'); + }, 1000); } } };