4b7714e209
- 合并 PR #112 的核心改动:新增 126 邮箱 provider,并复用 163 / 163 VIP 的网页邮箱接码链路 - 本地补充修复:吸收 126 子域名注入与来源识别修正,以及新版 ChatGPT 登录验证码邮件匹配适配 - 影响范围:sidepanel mail provider、background navigation/source routing、content mail polling、相关回归测试
123 lines
2.6 KiB
JSON
123 lines
2.6 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "codex-oauth-automation-extension",
|
|
"version": "7.6",
|
|
"version_name": "Pro7.6",
|
|
"description": "用于自动执行多步骤 OAuth 注册流程",
|
|
"permissions": [
|
|
"sidePanel",
|
|
"alarms",
|
|
"tabs",
|
|
"webNavigation",
|
|
"declarativeNetRequest",
|
|
"debugger",
|
|
"browsingData",
|
|
"cookies",
|
|
"storage",
|
|
"scripting",
|
|
"activeTab"
|
|
],
|
|
"host_permissions": [
|
|
"https://*.icloud.com/*",
|
|
"https://*.icloud.com.cn/*",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"declarative_net_request": {
|
|
"rule_resources": [
|
|
{
|
|
"id": "icloud_headers",
|
|
"enabled": true,
|
|
"path": "rules.json"
|
|
}
|
|
]
|
|
},
|
|
"side_panel": {
|
|
"default_path": "sidepanel/sidepanel.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"https://auth0.openai.com/*",
|
|
"https://auth.openai.com/*",
|
|
"https://accounts.openai.com/*"
|
|
],
|
|
"js": [
|
|
"content/activation-utils.js",
|
|
"content/utils.js",
|
|
"content/auth-page-recovery.js",
|
|
"content/phone-auth.js",
|
|
"content/signup-page.js"
|
|
],
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://mail.qq.com/*",
|
|
"https://wx.mail.qq.com/*"
|
|
],
|
|
"js": [
|
|
"content/activation-utils.js",
|
|
"content/utils.js",
|
|
"content/qq-mail.js"
|
|
],
|
|
"all_frames": true,
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://mail.163.com/*",
|
|
"https://*.mail.163.com/*",
|
|
"https://webmail.vip.163.com/*",
|
|
"https://mail.126.com/*",
|
|
"https://*.mail.126.com/*"
|
|
],
|
|
"js": [
|
|
"content/activation-utils.js",
|
|
"content/utils.js",
|
|
"content/mail-163.js"
|
|
],
|
|
"all_frames": true,
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://www.icloud.com/*",
|
|
"https://www.icloud.com.cn/*"
|
|
],
|
|
"js": [
|
|
"content/activation-utils.js",
|
|
"content/utils.js",
|
|
"content/icloud-mail.js"
|
|
],
|
|
"all_frames": true,
|
|
"run_at": "document_idle"
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://duckduckgo.com/email/settings/autofill*"
|
|
],
|
|
"js": [
|
|
"content/activation-utils.js",
|
|
"content/utils.js",
|
|
"content/duck-mail.js"
|
|
],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"action": {
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|