| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "manifest_version": 3,
- "name": "多页面自动化",
- "version": "1.1.0",
- "description": "用于自动执行多步骤 OAuth 注册流程",
- "permissions": [
- "sidePanel",
- "tabs",
- "webNavigation",
- "debugger",
- "storage",
- "scripting",
- "activeTab"
- ],
- "host_permissions": [
- "<all_urls>"
- ],
- "background": {
- "service_worker": "background.js"
- },
- "side_panel": {
- "default_path": "sidepanel/sidepanel.html"
- },
- "content_scripts": [
- {
- "matches": [
- "https://auth0.openai.com/*",
- "https://auth.openai.com/*",
- "https://accounts.openai.com/*"
- ],
- "js": ["content/utils.js", "content/signup-page.js"],
- "run_at": "document_idle"
- },
- {
- "matches": [
- "https://mail.qq.com/*",
- "https://wx.mail.qq.com/*"
- ],
- "js": ["content/utils.js", "content/qq-mail.js"],
- "all_frames": true,
- "run_at": "document_idle"
- },
- {
- "matches": [
- "https://mail.163.com/*"
- ],
- "js": ["content/utils.js", "content/mail-163.js"],
- "all_frames": true,
- "run_at": "document_idle"
- },
- {
- "matches": [
- "https://duckduckgo.com/email/settings/autofill*"
- ],
- "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"
- }
- }
|