我开发了一个工具,可以将Gemini聊天导出为PDF、Word、Docs和Notion格式。

1作者: backrun大约 2 个月前原帖
嘿,HN, 如果你曾尝试导出 Gemini 聊天记录,你就会知道这个问题:没有原生的方法可以做到这一点。 我在研究和写作中大量使用 Gemini。每次会话结束后,我都要做同样繁琐的事情——全选、复制、粘贴到 Word 中、修复格式问题,然后重复。代码块变成了普通文本,标题消失了,表格也崩溃了。每次想保留的对话都需要花费 10 分钟进行整理。 因此,我开发了 Gemini Exporter,这是一款 Chrome 扩展,可以一键处理 Gemini 聊天记录的导出工作流程。 支持的导出格式: - 导出 Gemini 聊天记录为 Word (DOCX) – 结构保留:标题、列表、代码块,均可编辑 - 导出 Gemini 聊天记录为 PDF – 适合分享、归档或合规的干净布局 - 导出 Gemini 聊天记录为 Google Docs – 直接推送,无需下载文件,随时准备协作 - 导出 Gemini 聊天记录为 Notion – 将对话转换为 Notion 页面,用于文档或知识库 - 导出选定部分或整个聊天记录 - 在导出前设置字体、大小和文本颜色 为什么不直接使用 API? Gemini API 不会暴露用户现有的对话历史——它只生成新的响应。导出浏览器中已存在的 Gemini 聊天记录的唯一方法是直接从 DOM 中读取。这正是该扩展所做的,完全在客户端进行。没有对话数据会离开你的浏览器用于 Word 和 PDF 导出。 我希望能收到任何复杂聊天记录的反馈——特别是包含大量代码块、数学符号或非常长的多轮对话。这些都是我仍在优化的边缘案例。 → Chrome 网上应用店:[https://chromewebstore.google.com/detail/gemini-exporter-save-gemi/lgipeakgdkcgnkdljeagconfbfeolidj](https://chromewebstore.google.com/detail/gemini-exporter-save-gemi/lgipeakgdkcgnkdljeagconfbfeolidj) → 网站:[https://backrun.co/gemini-exporter](https://backrun.co/gemini-exporter)
查看原文
Hey HN,<p>If you&#x27;ve ever tried to export Gemini chat history, you already know the problem: there&#x27;s no native way to do it.<p>I use Gemini heavily for research and writing. After every session I&#x27;d end up doing the same tedious thing — select all, copy, paste into Word, fix broken formatting, repeat. Code blocks collapsed into plain text. Headings disappeared. Tables fell apart. It was 10 minutes of cleanup for every conversation worth keeping.<p>So I built Gemini Exporter, a Chrome extension that handles the export Gemini chat workflow in one click. Supported export formats:<p>- Export Gemini chat to Word (DOCX) – structure preserved: headings, lists, code blocks, all editable<p>- Export Gemini chat to PDF – clean layout for sharing, archiving, or compliance<p>- Export Gemini chat to Google Docs – direct push, no file download needed, ready for collaboration<p>- Export Gemini chat to Notion – converts the thread into a Notion page for documentation or knowledge bases<p>- Export a selected part or the entire chat history<p>- Set font, size, and text color before export<p>Why not just use the API? The Gemini API doesn&#x27;t expose a user&#x27;s existing conversation history — it only generates new responses. The only way to export Gemini chat that already exists in the browser is to read it from the DOM directly. That&#x27;s what the extension does, entirely client-side. No conversation data leaves your browser for Word and PDF exports.<p>Would appreciate feedback from anyone with complex chats — especially heavy code blocks, math notation, or very long multi-turn threads. Those are the edge cases I&#x27;m still hardening.<p>→ Chrome Web Store: https:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;gemini-exporter-save-gemi&#x2F;lgipeakgdkcgnkdljeagconfbfeolidj<p>→ Website: https:&#x2F;&#x2F;backrun.co&#x2F;gemini-exporter