dsh-webask
Manifest validSend one-liner questions to DeepSeek's web chat instead of burning your DSH context. Composer button + global hotkey palette, with history.
WebAsk
Send one-liner questions to DeepSeek's web chat instead of burning your DSH context. Composer button · global hotkey palette · history.
DeepSeek Harness resends the whole conversation on every turn. So a twenty-token question — the kind you already know will be short — does not cost twenty tokens. It costs the entire context window it rides on.
WebAsk hands exactly those questions to the free web chat and never lets them enter the conversation at all.
What you get
A button beside the composer
You have already typed the question into DSH. Instead of sending it, click the WebAsk button. The text is lifted out of the draft — cleared through the official input actions, so it never reaches the model — copied to your clipboard, and opened in a new tab.
The button is disabled unless there is a real draft to lift and the composer is in a plain, sendable phase, so it can never fire mid-submission.
A palette on a global hotkey
mod+shift+k anywhere opens a centred input. Type, press Enter, done.
Shift+Enter for a newline, Esc to close.
Underneath sits a local history. Every question can be:
- re-opened in the web chat,
- copied again,
- or inserted back into the composer — the closing loop, for when the answer turns out to deserve follow-up in a real session.
A settings tab
Settings → Plugins → WebAsk: target site, URL template, global hotkey, whether to copy to the clipboard, history on/off, and the history limit.
An honest note about ?q=
https://chat.deepseek.com/?q=… is a community convention, not a feature of
the site. chat.deepseek.com does not read that parameter by itself — userscripts
exist specifically to add the behaviour. Pretending otherwise would make this
plugin quietly broken for everyone who does not have one installed.
So WebAsk does both things at once, every time:
- it always copies the question to your clipboard, and
- it opens the templated URL.
If you do run such a userscript, the flow is fully automatic. If you do not, you press ⌘V once in the tab that just opened. Either way the question costs zero tokens — which is the entire point.
Install
dsh plugin --profile web add dsh-webask
Then restart that profile. Plugin installs change the package graph, and the package manifest and client-module metadata are cached for the life of the process — a restart is what picks them up.
Verify before you restart, if you like:
dsh --profile web --dump-config | grep -A2 webask
Supported sites
Every preset below speaks the same ?q= convention:
| Site | Template |
|---|---|
| DeepSeek | https://chat.deepseek.com/?q={q} |
| Kimi | https://www.kimi.com/?q={q} |
| Qwen | https://chat.qwen.ai/?q={q} |
| 豆包 | https://www.doubao.com/?q={q} |
| 腾讯元宝 | https://yuanbao.tencent.com/?q={q} |
| 智谱 GLM | https://chatglm.cn/?q={q} |
| Gemini | https://gemini.google.com/?q={q} |
Because the template is editable, a site WebAsk has never heard of works too.
Use {q} where the question goes. With no {q} at all, the question is appended
as a q= query parameter, preserving whatever else the URL already carries.
Privacy
Nothing leaves your machine except the question you chose to ask a web chat, in
the tab you opened. History and settings live in this browser's localStorage
and are never uploaded. WebAsk sends nothing to the model, and its host half is
an empty mount row — no service, no tool, no route.
How it works
WebAsk is a presentation-only client plugin. It occupies three documented slots and reaches the composer only through published action faces — it never touches the DOM to read or clear your draft.
| Slot | Surface | Access used |
|---|---|---|
conversation.input.right | the composer button | useInput (read draft, phase) + inputActions.setDraft (lift the draft out) |
shell.overlay | palette + toasts | useSessions(s => s.current) for the active session, plus a bridge published by the composer button for insert-back |
settings.plugins.tab | config page | useResource / useWorkspaces standard kit |
Notes for anyone reading the source:
- No build chain.
build.mjsis ~40 lines with zero dependencies: it inlines the stylesheet as a string and wrapssrc/client.jsin the CJS closure-factory the browser module loader expects. No bundler, no TypeScript, no CSS pipeline. require("react")is resolvable inside the client factory, so the UI is written withReact.createElementand needs no JSX transform.- Strings are registered with
ctx.localewith a built-in bilingual fallback, so the UI still reads correctly if the locale service is unavailable. - The overlay is root-scoped while the draft is per-session. Rather than reaching into the input hub by id, the composer button publishes its own official action face into a tiny shared store; "is there somewhere to insert into?" then has a truthful answer, and the insert-back action is disabled when there is not.
Development
npm run build # src/ -> lib/client.js
npm run verify # 37 offline checks: slot wiring, click paths, persistence
verify runs the built bundle in a VM against a fake browser and a minimal React
stub, then drives the real click paths. It catches a mistyped slot name or a
mis-read prop here, rather than as a button that silently does nothing.
License
MIT © DanZai233
Comments
Loading…
Similar plugins
by huangfuren
Conversation outline panel for the DSH web surface: user questions as root nodes (index, time, tool count and text volume per turn) with the Markdown headings of assistant replies hanging beneath them
★ 0
MIT
JavaScript
Sep 27, 2026
dsh plugin --profile web add dsh-conversationby JoukoPuro
一个 DeepSeek Harness(DSH)插件: 在 Web 输入框的工具行中添加一个 ✨ 图标按钮。点击后选择打磨风格,已接入的大模型 会把你草稿中的提示词改写得更专业、更易被 AI 理解 。A DeepSeek Harness plugin: icon-only composer button that rewrites your prompt via the connected LLM
★ 4
↓ 116/wk
MIT
JavaScript
Aug 14, 2026
dsh plugin --profile web add dsh-prompt-polishby zlqd123
为 DeepSeek Harness Web 聊天输入框自定义「发送」与「换行」键位:任意组合键自由分配、双预设一键切换、用户设置文档持久化、深浅色主题自适应。AI 生成的社区插件(AI-generated)。
★ 0
MIT
JavaScript
Sep 25, 2026
dsh plugin --profile web add dsh-composer-keysby lin-nanxing
DeepSeek Harness会话界面的快速查找跳转,根据会话中用户提问为单位进行跳转,适用于较长的上下文工作,需要快速找到对应的问题和回答的场景. A slim right-edge question-navigation rail for long DSH conversations. Every user question becomes a hoverable tick — click
★ 0
MIT
TypeScript
Aug 17, 2026
dsh plugin --profile web add dsh-qnavby hhb1028
DSH Web GUI 会话问题导航条:聊天区左缘一问一杠,随滚动高亮当前问题、悬停显示问答预览气泡、点击把该问平滑滚到视口顶(未渲染的更早历史自动翻页加载),无需改动 dsh 本体源码
★ 0
MIT
JavaScript
Sep 3, 2026
dsh plugin --profile web add dsh-client-ui-timelineby baisama-cloud
Command history for the DeepSeek Harness (DSH) web GUI composer — press ↑ / ↓ to cycle through your previously sent instructions, then restore the draft you were editing when you reach the end of the
★ 3
↓ 928/wk
MIT
JavaScript
Aug 19, 2026
dsh plugin --profile web add dsh-composer-history