23 lines
549 B
JSON
23 lines
549 B
JSON
{
|
|
"name": "chrome_handle_download",
|
|
"description": "Wait for a browser download and return details (id, filename, url, state, size)",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"filenameContains": {
|
|
"type": "string",
|
|
"description": "Filter by substring in filename or URL"
|
|
},
|
|
"timeoutMs": {
|
|
"type": "number",
|
|
"description": "Timeout in ms (default 60000, max 300000)"
|
|
},
|
|
"waitForComplete": {
|
|
"type": "boolean",
|
|
"description": "Wait until completed (default true)"
|
|
}
|
|
},
|
|
"required": []
|
|
}
|
|
}
|