capture
Capture screenshots of specified regions (left, right, or full) with optional OCR, and save them in JSON, markdown, vertical, or horizontal formats to a dated directory in Downloads.
Instructions
Captures a screenshot of the specified region and performs OCR. Options:
region: 'left'/'right'/'full' (default: 'left')
format: 'json'/'markdown'/'vertical'/'horizontal' (default: 'markdown') The screenshot is saved to a dated directory in Downloads.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | markdown | |
region | No | left |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"default": "markdown",
"enum": [
"json",
"markdown",
"vertical",
"horizontal"
],
"type": "string"
},
"region": {
"default": "left",
"enum": [
"left",
"right",
"full"
],
"type": "string"
}
},
"type": "object"
}