DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Remote Qr Button — DSH Plugin for DeepSeek Harness
← Plugins

dsh-remote-qr-button

Remote Qr Button

Floating phone-pairing QR button for the DSH WebUI. Companion UI for dsh-remote-link: opens its /qr pairing page in an in-app overlay.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:huaxiren6/dsh-remote-qr-button#8427d4613a587bb947e8e7eb69fbdba1e435b402
READMECompatibilityVersions

Compatibility and provenance

Remote Qr Button is published as dsh-remote-qr-button and currently resolves to version 0.2.7. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/20/2026

Versions

0.2.7stable
8/20/2026
0.2.6stable
8/20/2026
0.2.5stable
8/20/2026
Show 5 more versionsCollapse versions
0.2.4stable
8/20/2026
0.2.3stable
8/20/2026
0.2.2stable
8/20/2026
0.2.1stable
8/20/2026
0.2.0stable
8/19/2026

Related plugins

Loading related plugins…

Latest
0.2.7
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
Weekly downloads
84
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in ui-customization.

Better Sidebardsh-better-sidebarDSH web plugin: a VSCode-like right sidebar (explorer / editor / terminal / git / browser), isolated per conversation session. Exposes a service for other plugins to register sidebar tabs and file viewers.Deepseek Ipptdeepseek-ipptiPolloWork PPT Studio and its curated slide templates as a native DeepSeek Harness conversation view.Codex Ui@michengai/dsh-codex-uiDSH Codex UI — 为 DeepSeek Harness Web 提供 Codex 风格侧栏、工作区会话树、全局搜索和轮次导航 · A Codex-style sidebar, workspace session tree, global search, and turn navigation for DSH WebDream Skindsh-dream-skinDeepSeek Harness 换肤插件(Dream Skin for DSH):8 套 iOS / Linear 式清透冷调的高质感主题 + 弥散光壁纸 + 每皮肤智能背景 + 强调色 + 主题包分享,把换肤做成材质与配色克制的高级感工艺,而非贴图。Works in native DSH Web and third-party desktop clients (DSH Desktop): 8 original premium themes, glass materials, wallpaper 2.0

README

📱 dsh-remote-qr-button

DeepSeek Harness WebUI 手机配对二维码悬浮按钮

在 DSH WebUI 右下角添加一个悬浮按钮,点击即可在应用内打开手机配对二维码,无需另开浏览器标签页。


简介

本插件是 dsh-remote-link 的配套 UI:配对页(/qr)由 remote-link 网关提供,本插件只负责把入口放进桌面端 WebUI。

  • 仅当从 127.0.0.1 / localhost 访问时显示按钮
  • 点击弹出应用内浮层,展示配对二维码
  • 未安装 dsh-remote-link 时显示「未检测到网关」提示,而不是死链

安装

先装 dsh-remote-link,再装本插件。

dsh plugin --profile web add github:BotonJ/dsh-remote-link
dsh plugin --profile web add dsh-remote-qr-button

工作原理

  • Host 端(lib/index.js):注册两个同源路由——配置探针 GET /dsh-remote-qr-button/config(实时读取 remoteLinkGateway 服务的端口、短码与 TTL,无硬编码端口)和 PNG 代理 GET /dsh-remote-qr-button/qr.png(从网关取实时配对图)。
  • Client 端(lib/client.js):点击时请求探针,以同源 <img> 渲染二维码,同时显示 6 位短码与倒计时(每 5 秒轮询)。

二维码用 <img> 而非 <iframe>:Electron 桌面窗口会拦截跨源子框架导航,iframe 指向 http://127.0.0.1:<port>/qr 会渲染为空白。同源代理让浮层在浏览器和桌面端都能正常工作。

按钮 id(dsh-remote-qr-button)与 dsh-remote-link 代理注入的一致,两者互斥:先挂载者生效,另一个跳过。本插件覆盖直接访问 127.0.0.1:3080 的 WebUI 页面。

目录结构

dsh-remote-qr-button/
  lib/index.js      # host 端:配置探针路由
  lib/client.js     # client 端:悬浮按钮 + 浮层
  cordis.patch.yml  # bundle 补丁,插入插件条目

License

MIT