원클릭으로
browser
Navigate web pages, read content, and interact with elements via headless Chrome.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Navigate web pages, read content, and interact with elements via headless Chrome.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Code review and analysis workflow
Fleet management — spawn, monitor, and coordinate child agents via BRC-33 MessageBox and BRC-52 authorization.
AI image generation via x402 micropayment
Cross-wallet communication via BRC-33 MessageBox
Double-check outputs by re-running queries and comparing results. Use when accuracy is critical or when you suspect an error in a previous tool result.
Generic bridge to any BRC-100 wallet endpoint via wallet_call. Use for discovery, certificates, HMAC, key linkage, and transaction management — endpoints not covered by existing dedicated wallet tools.
| name | browser |
| description | Navigate web pages, read content, and interact with elements via headless Chrome. |
| auto_activate | false |
| tools | ["browser"] |
Use the browser tool for JavaScript-heavy sites, form filling, clicking buttons, and reading dynamic content. For simple HTTP fetches, prefer web_fetch (free, no Chrome needed).
browser({"action": "navigate", "url": "https://example.com"})
browser({"action": "snapshot"})
browser({"action": "click", "ref": "e3"})
browser({"action": "snapshot"})
browser({"action": "type", "ref": "e4", "text": "hello"})
| Action | Required params | Description |
|---|---|---|
navigate | url | Open a URL (http/https only). Invalidates refs. |
snapshot | Get accessibility tree with interactive element refs. | |
click | ref | Click an element by ref. Invalidates refs. |
type | ref, text | Type text into a field by ref. Invalidates refs. |
select | ref, value | Select dropdown option by text or value. Invalidates refs. |
evaluate | expression | Run JavaScript and return the result. |
screenshot | Save a PNG screenshot to workspace. | |
close | Close current page. Use page: "all" to shut down Chrome. |
teragun.com, navigate to teragun.com, not theragun.com.[e1] only appear on interactive elements (buttons, links, inputs, etc.).navigate (~2-3s cold start)."page": "mypage" to navigate/snapshot/close named pages (default is "main", max 3).web_fetch (free, faster)x402_call or web_fetchweb_fetch[e1], [e2]), NOT CSS selectors. The browser tool only accepts refs like "e3", not selectors like ".btn-submit".search_tools, not always-on. It won't appear in your tool list until you search for it.file:// and javascript: URLs are blocked for security. Only http:// and https:// are allowed.browser({"action": "close"}) to free resources, or "page": "all" to shut down Chrome entirely.