extract_links
Extract all links from any web page with optional regex filtering. Reuse persistent browser tabs to gather URLs efficiently from multiple pages.
Instructions
Extract all links from a web page. Can filter by regex pattern. Supports persistent sessions via tab_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | The URL to extract links from (optional if tab_id is provided) | |
| filter | No | Regex pattern to filter URLs (applied to the full URL) | |
| tab_id | No | Reuse a persistent tab (from open_tab) | |
| timeout | No | Timeout in ms (default: 30000) | |
| max_results | No | Max number of links to return (default: 100) |