flow-extension/manifest.json
type-two 501431bf59 Flow rinse: browser downloads, fast-fail, autoStart, launcher + self-healing launchd
- background.js: chrome.downloads via page session (no CSP/base64)
- content.js: fast-fail on Flow error banner, image vs video timeouts, autoStart
- local_server_example.py: /enqueue + /save, downloads/ output, resume-skip
- launch.sh: idempotent server-up + caffeinate + single-tab focus
- install.sh + plist: self-healing agent every 10 min (TCC-safe App Support copy)
- flowclient.py: enqueue/wait_for helper for game projects
- README: full setup + macOS TCC gotcha

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-06 01:20:32 +10:00

32 lines
707 B
JSON

{
"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"
}
]
}