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

1作者: backrun5 个月前
嘿,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 Web Store:https://chromewebstore.google.com/detail/gemini-exporter-save-gemi/lgipeakgdkcgnkdljeagconfbfeolidj → 网站: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