This commit is contained in:
ray zhou
2026-05-29 11:21:40 +08:00
parent 5d6d482efe
commit f71a5c59af
447 changed files with 32245 additions and 116 deletions

View File

@@ -0,0 +1,29 @@
{
"name": "browser_highlight",
"description": "Temporarily highlight an element for visual debugging.",
"arguments": {
"type": "object",
"properties": {
"element": {
"type": "string",
"description": "Human-readable element description used to obtain permission to inspect the element"
},
"ref": {
"type": "string",
"description": "Exact target element reference from the page snapshot"
},
"durationMs": {
"type": "number",
"description": "Highlight duration in milliseconds. Defaults to 2000."
},
"viewId": {
"type": "string",
"description": "Target browser tab ID. If omitted, uses the last interacted tab."
}
},
"required": [
"element",
"ref"
]
}
}