English | 中文
ClickDeck is an open-source Chrome/Edge extension for visual HTML page editing. It helps you fine-tune AI-generated pages, HTML presentations, project briefs, and other browser-rendered documents directly in the browser without opening DevTools.
Select an element, adjust typography, spacing, alignment, color, and text in place, then export the edited page as an HTML snapshot, long image, image-based PDF, or browser presentation.
ClickDeck is an early MVP. It is usable for real browser-page polishing, local installation, and GitHub feedback, while export quality and advanced workflows are still improving.
AI coding tools are good at generating the first version of a web page, but the last mile is often visual: a title needs to be bigger, a paragraph needs softer spacing, a section needs a warmer color, or a presentation page needs a final polish before sharing.
ClickDeck sits between Chrome DevTools and a full design tool. It is a lightweight in-browser visual editor for people who want direct control over the rendered page without turning every small design adjustment into a code search.
- Select elements on the current page with a visual outline.
- Adjust font size, weight, line spacing, alignment, and color.
- Edit text directly in place.
- Undo and redo style/text changes.
- Copy AI Edit Prompt: Generate a structured prompt from your visual edits, ready to be pasted into Claude/ChatGPT for source code updates.
- Edit Suggestions: Add visual edit suggestions on the page, including dual-region move notes for AI handoff.
- Present Mode: Present your HTML design directly in full screen.
- Export an edited HTML snapshot.
- Export long images and image-based PDFs for sharing or archival snapshots.
- Copy recent diagnostics logs from Advanced options when issue reports need technical details.
- Show a Chinese UI automatically when the browser language is Chinese.
- Polishing AI-generated landing pages, prototypes, and static HTML pages.
- Fine-tuning HTML presentations built with Reveal.js, Slidev, Marp, or custom HTML.
- Adjusting browser-rendered project briefs, proposals, reports, and teaching materials.
- Capturing an edited page as HTML or PDF when source-code write-back is not needed.
- No AI content generation.
- No source-code write-back.
- No free-form design canvas.
- No editable PPT export in the MVP.
For most users, install ClickDeck from the GitHub Releases page:
- Go to the Releases page and download
ClickDeck-v1.2.1.zip. - Extract the ZIP file to a folder on your computer.
- Open Chrome or Edge and navigate to
chrome://extensions/oredge://extensions/. - Enable Developer mode in the top right corner.
- Click Load unpacked and select the extracted folder.
- See the release notes in
RELEASE_1.2.1.mdif you want a short summary of what changed.
npm install
npm run build
npm run typecheck
npm test
npm run e2eLoad the built dist/ directory in Chrome or Edge via the extensions page with Developer mode enabled.
For screenshots or GIF recording, open fixtures/showcase-page.html, enable ClickDeck with Alt+Shift+C, select the hero title or metric cards, and demonstrate a few small typography/color changes.
To regenerate the demo assets locally after building the extension:
node scripts/capture-demo.mjsClickDeck runs locally in the browser. It does not upload page content or diagnostics by default. The diagnostics button copies recent local logs to your clipboard so you can choose what to share in an issue.
- Legacy browser-print PDF export is no longer the primary route. Use long image or image-based PDF export for higher visual fidelity; complex pages may still need manual review.
- Complex websites may have CSS or script behavior that affects editing/export quality.
- HTML snapshot export keeps external resource URLs instead of bundling every asset.
- The panel is draggable and scrollable, but not resizable.
MIT
If you find ClickDeck helpful, you can support its development!
WeChat Pay |
Alipay |
ClickDeck 是一个开源 Chrome/Edge 插件,用于对当前 HTML 页面进行可视化编辑和微调。它适合微调 AI 生成的网页、HTML 演示文稿、项目简报和其他浏览器渲染出来的文档,不需要打开 DevTools。
你可以直接选择页面元素,调整字号、间距、对齐、颜色和文本内容,然后把修改后的页面导出为 HTML 快照、长图、图片型 PDF,或直接进入浏览器演示模式。
ClickDeck 目前是早期 MVP。它已经可以用于真实的浏览器页面微调、本地安装和 GitHub 反馈,但导出质量和高级工作流仍在持续优化。
AI 编程工具很擅长生成第一版网页,但最后一公里通常是视觉微调:标题再大一点、段落间距柔和一点、区块颜色更暖一点,或者 HTML/PPT 式页面在分享前需要最后打磨。
ClickDeck 介于 Chrome DevTools 和完整设计工具之间。它是一个轻量的浏览器内可视化编辑器,让用户不用为了每一个小改动都去代码里搜索定位。
- 在当前页面上选择元素,并显示可视化描边。
- 调整字号、字重、行距、对齐和颜色。
- 直接编辑页面文字。
- 撤销和重做样式/文字修改。
- 复制 AI Edit Prompt:将你的可视化修改一键转换为结构化的 Prompt,直接发给 Claude/ChatGPT 用于修改源码。
- 修改意见: 在页面上添加可视化修改意见,并支持拖拽划定“移动”的起点和终点区域,方便交给 AI 继续改源码。
- 浏览器演示模式: 将本地 HTML 文件作为幻灯片直接全屏演示,无需转为 PPT。
- 导出修改后的 HTML 快照。
- 导出长图和图片型 PDF,用于分享或固定归档。
- 在高级选项中复制最近诊断日志,方便提交 issue 时补充技术信息。
- 浏览器语言为中文时自动显示中文界面。
- 微调 AI 生成的 landing page、原型页和静态 HTML 页面。
- 微调 Reveal.js、Slidev、Marp 或自定义 HTML 生成的演示文稿。
- 调整项目简报、提案、报告和教学材料等浏览器渲染文档。
- 在不需要源码回写时,把修改后的页面导出为 HTML 或 PDF。
- 不做 AI 内容生成。
- 不回写源码。
- 不做自由画布设计工具。
- MVP 不导出可编辑 PPT。
对于普通用户,请通过 GitHub Releases 安装 ClickDeck:
- 前往 Releases 页面,下载
ClickDeck-v1.2.1.zip。 - 将 ZIP 文件解压到你电脑上的一个文件夹中。
- 打开 Chrome 或 Edge 浏览器,访问
chrome://extensions/或edge://extensions/。 - 打开右上角的 开发者模式 (Developer mode)。
- 点击 加载已解压的扩展程序 (Load unpacked),然后选择你刚才解压的文件夹。
- 如果你想先快速了解这版更新,可以查看
RELEASE_1.2.1.md。
npm install
npm run build
npm run typecheck
npm test
npm run e2e构建后,在 Chrome 或 Edge 的扩展管理页面开启开发者模式,并加载 dist/ 目录。
如果要做截图或录制 GIF,可以打开 fixtures/showcase-page.html,用 Alt+Shift+C 启用 ClickDeck,选择首屏标题或指标卡片,演示少量字号、颜色和文本微调。
构建插件后,可以用下面的命令重新生成演示素材:
node scripts/capture-demo.mjsClickDeck 在浏览器本地运行。默认不会上传页面内容或诊断信息。诊断按钮只会把最近本地日志复制到剪贴板,由你决定是否粘贴到 issue。
- 旧版浏览器打印 PDF 不再是主要路线。建议优先使用长图或图片型 PDF 导出;复杂页面仍建议人工检查导出效果。
- 复杂网站的 CSS 或脚本可能影响编辑和导出质量。
- HTML 快照会保留外部资源 URL,不会把所有资源内联打包。
- 面板可以拖动和滚动,但暂不支持自由拉伸。
MIT
如果觉得 ClickDeck 帮到了你,欢迎请作者喝杯咖啡!
微信赞助 |
支付宝赞助 |


