- 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>
32 lines
707 B
JSON
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"
|
|
}
|
|
]
|
|
}
|