fix: 修复 2925 收件模式轮询与重复注入

- receive 模式下跳过 2925 邮箱页顶部账号校验
- 解析 bounce 转发地址与中文日期,避免误过滤验证码邮件
- 为内容脚本增加重复注入保护,避免重复声明导致轮询失效
This commit is contained in:
Isulew
2026-04-27 13:57:51 +08:00
parent c98cfd7053
commit b71bccaf8a
6 changed files with 74 additions and 7 deletions
+2
View File
@@ -2,6 +2,7 @@
// Injected on: auth0.openai.com, auth.openai.com, accounts.openai.com
// Dynamically injected on: chatgpt.com
(function initSignupPageContentScript() {
console.log('[MultiPage:signup-page] Content script loaded on', location.href);
const SIGNUP_PAGE_LISTENER_SENTINEL = 'data-multipage-signup-page-listener';
@@ -3560,3 +3561,4 @@ async function step5_fillNameBirthday(payload) {
log('步骤 5:已点击“完成帐户创建”,当前步骤直接完成,不再等待页面结果。');
return completionPayload;
}
})();