coderdailyone/dsh-plugin-browser-use ↗★ 0
dsh-plugin-browser-use
基于 Playwright 的 DeepSeek Harness 浏览器自动化工具插件
AI 分析
提供基于 Chromium 的网页自动化访问能力,具备安全导航策略。适合需要让 Agent 执行网页浏览、信息提取等自动化任务的用户。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:coderdailyone/dsh-plugin-browser-use说明文档
阅读完整 README ↗Configuration
| key | type | default | meaning |
|---|---|---|---|
allowedHosts | string[] | [] | Host-label allowlist. example.com matches example.com and *.example.com; matching is on host labels, never substrings. Empty = any public host. |
allowPrivateNetwork | boolean | false | Permit loopback / private / link-local targets. Off by default. |
headless | boolean | true | Run without a window. |
executablePath | string | — | Explicit Chromium binary. Falls back to $DSH_BROWSER_EXECUTABLE, OS locations, then Playwright. |
userAgent | string | dsh-plugin-browser-use/ | User-Agent for the browser context. |
navigationTimeoutMs | int ≥ 1 | 30000 | Page-load budget per navigation. |
actionTimeoutMs | int ≥ 1 | 15000 | Budget per click / fill / read. |
maxTextChars | int ≥ 1 | 20000 | Hard bound on extracted page text. |