browser.screenshot
Capture the current browser tab as an image, save it to a structured path, and return the image. Requires DevTools connection for extension integration.
Instructions
Capture current browser tab; saves to structured path and returns image. Requires extension connection with DevTools open.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
randomString | Yes | any string (ignored) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"randomString": {
"description": "any string (ignored)",
"type": "string"
}
},
"required": [
"randomString"
],
"type": "object"
}