DOM automation for Google Labs Flow — background worker injects trusted input via the DevTools Protocol (Flow's editor ignores synthetic events), polls a local queue, harvests generated asset URLs. Includes the generated game+promo prompt bank. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
31 lines
690 B
JSON
31 lines
690 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"
|
|
],
|
|
"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"
|
|
}
|
|
]
|
|
}
|