start_monitoring
Initiate or resume monitoring of browser tabs in Firefox, capturing data types like console logs, errors, network activity, websocket messages, and performance metrics for debugging.
Instructions
Start/restart monitoring for a tab
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tabId | No | ||
types | No |
Input Schema (JSON Schema)
{
"properties": {
"tabId": {
"type": "string"
},
"types": {
"default": [
"console",
"errors",
"network",
"websocket"
],
"items": {
"enum": [
"console",
"errors",
"network",
"websocket",
"performance"
],
"type": "string"
},
"type": "array"
}
},
"type": "object"
}