Visol-456
dsh-web-compat
DeepSeek Harness Web 兼容插件:非 secure context 下注入 crypto.randomUUID polyfill,修复局域网 HTTP 访问时附件上传崩溃 | Web compat for DeepSeek Harness UI: crypto.randomUUID polyfill for plain-http LAN access
- Stars
- 1
- Language
- TypeScript
- Created
- Aug 15, 2026
- Updated
- Aug 15, 2026
Introduction
@visol-456/dsh-web-compat
DeepSeek Harness Web 兼容插件:修复通过局域网纯 HTTP(非 secure context)访问 dsh web 时,官方会话界面添加图片附件调用 crypto.randomUUID() 崩溃的问题,并在设置页新增「Web 兼容」状态面板。
原理
- 浏览器仅在 secure context(HTTPS、localhost、127.0.0.1)暴露
crypto.randomUUID()。 - 通过
http://192.168.3.2:3080访问时属于非 secure context,crypto.randomUUID为undefined。 crypto.getRandomValues()在非 secure context 仍可用,因此插件在 client bundle 模块顶层立即注入 UUID v4 polyfill。- 插件同时注册 Settings 新 section「Web 兼容」,显示当前是否 secure context 以及
randomUUID来源。
使用
dsh plugin add @visol-456/dsh-web-compat
开发
npm install
npm test
npm run build
License
MIT