From adf0cccd77d68964defd9d7eac412c6952a95454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A5=81=E8=BF=9E=E6=B5=B7?= <2825305047@qq.com> Date: Fri, 17 Apr 2026 23:03:21 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E6=B3=A8=E5=86=8C?= =?UTF-8?q?=E6=B5=81=E7=A8=8B=EF=BC=8C=E6=9B=BF=E6=8D=A2=E7=A1=AE=E4=BF=9D?= =?UTF-8?q?=E6=B3=A8=E5=86=8C=E5=85=A5=E5=8F=A3=E9=A1=B5=E9=9D=A2=E5=B0=B1?= =?UTF-8?q?=E7=BB=AA=E7=9A=84=E9=80=BB=E8=BE=91=E4=B8=BA=E6=89=93=E5=BC=80?= =?UTF-8?q?=E6=B3=A8=E5=86=8C=E6=A0=87=E7=AD=BE=E9=A1=B5=EF=BC=8C=E5=B9=B6?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=96=87=E6=A1=A3=E6=8F=8F=E8=BF=B0=E4=BB=A5?= =?UTF-8?q?=E5=8F=8D=E6=98=A0=E6=96=B0=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- background.js | 2 +- background/steps/open-chatgpt.js | 4 ++-- 项目完整链路说明.md | 7 ++++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/background.js b/background.js index 90c00ab..cd53f5c 100644 --- a/background.js +++ b/background.js @@ -5641,7 +5641,7 @@ const verificationFlowHelpers = self.MultiPageBackgroundVerificationFlow?.create const step1Executor = self.MultiPageBackgroundStep1?.createStep1Executor({ addLog, completeStepFromBackground, - ensureSignupEntryPageReady, + openSignupEntryTab, }); const step2Executor = self.MultiPageBackgroundStep2?.createStep2Executor({ addLog, diff --git a/background/steps/open-chatgpt.js b/background/steps/open-chatgpt.js index 13042e3..2476a9d 100644 --- a/background/steps/open-chatgpt.js +++ b/background/steps/open-chatgpt.js @@ -5,12 +5,12 @@ const { addLog, completeStepFromBackground, - ensureSignupEntryPageReady, + openSignupEntryTab, } = deps; async function executeStep1() { await addLog('步骤 1:正在打开 ChatGPT 官网...'); - await ensureSignupEntryPageReady(1); + await openSignupEntryTab(1); await completeStepFromBackground(1, {}); } diff --git a/项目完整链路说明.md b/项目完整链路说明.md index 262d61f..8f5f03a 100644 --- a/项目完整链路说明.md +++ b/项目完整链路说明.md @@ -191,9 +191,10 @@ 流程: -1. 后台打开 ChatGPT 官网 -2. 等待注册入口页内容脚本就绪 -3. 标记 Step 1 完成 +1. 后台打开 ChatGPT 官网并复用/创建注册页标签 +2. 等待注册页内容脚本就绪(仅做连接与注入确认) +3. 不在 Step 1 检测或点击注册入口 +4. 标记 Step 1 完成 补充: