{ "manifest_version": 3, "name": "General Auto - Browser Automation Controller", "version": "1.0.0", "description": "通用浏览器自动化控制扩展", "permissions": [ "tabs", "webRequest", "webNavigation", "cookies", "storage", "debugger", "scripting" ], "host_permissions": [ "http://*/*", "https://*/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": ["injected.js"], "matches": [""] } ], "action": { "default_popup": "popup.html" } }