{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"duration": {
"description": "Duration in seconds to capture events (default: 10)",
"maximum": 60,
"minimum": 1,
"type": "number"
},
"filters": {
"additionalProperties": false,
"properties": {
"types": {
"description": "Types of requests to capture",
"items": {
"enum": [
"fetch",
"xhr"
],
"type": "string"
},
"type": "array"
},
"urlPattern": {
"description": "Only capture URLs matching this pattern",
"type": "string"
}
},
"type": "object"
},
"tabId": {
"description": "ID of the Chrome tab to monitor",
"type": "string"
}
},
"required": [
"tabId"
],
"type": "object"
}