{ "manifest_version": 3, "name": "Google Labs FX Flow Auto-Pilot", "version": "1.0", "description": "Automate prompt execution, model selection, and video/image generation using local queue integration.", "permissions": [ "storage", "debugger", "downloads" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "http://localhost:8017/*", "https://labs.google/*" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https://labs.google/fx/tools/flow*", "https://labs.google/fx/tools/whisk*" ], "js": ["content.js"], "run_at": "document_idle" } ] }