feat: 更新步骤 5 文档,修改按钮文本为“完成帐户创建”,优化用户提示信息

This commit is contained in:
QLHazyCoder
2026-04-17 03:41:00 +08:00
parent ce0fe101a3
commit 5a0003af3c
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -485,7 +485,7 @@ Cloudflare 模式下,插件不会再调用 Cloudflare API 创建路由。
- 页面要求 `age`
如果页面是生日模式,会填写年月日;如果页面上存在 `input[name='age']`,则直接填写年龄。
点击 `完成帐户创建` / `继续` 后,Step 5 会立刻记为完成,不再等待页面跳转结果;只有在提交瞬间发生页面跳转、且后台还没收到完成信号时,才会兜底检查是否已跳到 ChatGPT。
点击 `完成帐户创建` 后,Step 5 会立刻记为完成,不再等待页面跳转结果;只有在提交瞬间发生页面跳转、且后台还没收到完成信号时,才会兜底检查是否已跳到 ChatGPT。
### Step 6: Login via OAuth
+2 -2
View File
@@ -2190,7 +2190,7 @@ async function step5_fillNameBirthday(payload) {
const isAgeMode = !birthdayMode && Boolean(ageInput);
if (isAgeMode) {
log('步骤 5:当前为年龄输入模式,点击“继续”后将直接完成当前步骤。', 'warn');
log('步骤 5:当前为年龄输入模式,点击“完成帐户创建”后将直接完成当前步骤。', 'warn');
}
await humanPause(500, 1300);
@@ -2200,7 +2200,7 @@ async function step5_fillNameBirthday(payload) {
reportComplete(5, completionPayload);
if (isAgeMode) {
log('步骤 5:年龄模式已点击“继续”,当前步骤直接完成,不再等待页面结果。', 'warn');
log('步骤 5:年龄模式已点击“完成帐户创建”,当前步骤直接完成,不再等待页面结果。', 'warn');
return completionPayload;
}
+1 -1
View File
@@ -252,7 +252,7 @@
流程:
1. 生成随机姓名和生日
2. 内容脚本填写资料并点击“完成帐户创建” / “继续”
2. 内容脚本填写资料并点击“完成帐户创建”
3. 点击后立即上报 Step 5 完成,不再等待页面结果
4. 如果提交瞬间页面跳转导致响应通道中断,后台仅在未收到完成信号时兜底判断是否跳到 ChatGPT