| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- {
- "manifest_version": 3,
- "name": "多页面自动化",
- "version": "2.4",
- "version_name": "Pro2.4",
- "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/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/*"
- ],
- "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"
- },
- {
- "matches": [
- "https://checkout.stripe.com/*",
- "https://pay.openai.com/*"
- ],
- "js": [
- "content/activation-utils.js",
- "content/utils.js",
- "content/checkout-stripe.js"
- ],
- "run_at": "document_idle"
- },
- {
- "matches": [
- "https://*.paypal.com/*",
- "https://paypal.com/*"
- ],
- "js": [
- "content/activation-utils.js",
- "content/utils.js",
- "content/checkout-paypal.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"
- }
- }
|