HackerTrans
TopNewTrendsCommentsPastAskShowJobs

backrun

2 karmajoined 6 माह पहले
fast, calm, and reliable.

Submissions

[untitled]

1 points·by backrun·29 दिन पहले·0 comments

[untitled]

1 points·by backrun·पिछला माह·0 comments

[untitled]

1 points·by backrun·2 माह पहले·0 comments

[untitled]

1 points·by backrun·2 माह पहले·0 comments

[untitled]

1 points·by backrun·2 माह पहले·0 comments

[untitled]

1 points·by backrun·3 माह पहले·0 comments

[untitled]

1 points·by backrun·3 माह पहले·0 comments

[untitled]

1 points·by backrun·3 माह पहले·0 comments

[untitled]

1 points·by backrun·4 माह पहले·0 comments

[untitled]

1 points·by backrun·4 माह पहले·0 comments

[untitled]

1 points·by backrun·4 माह पहले·0 comments

[untitled]

1 points·by backrun·4 माह पहले·0 comments

I made a Chrome extension to export an entire Gemini chat

4 points·by backrun·4 माह पहले·0 comments

Gemini Exporter – Save Chats Directly to Notion, Docs, Word, and PDF

chromewebstore.google.com
4 points·by backrun·4 माह पहले·3 comments

I built a tool to export Gemini chat to PDF, Word, Docs, and Notion

2 points·by backrun·4 माह पहले·1 comments

Gemini Exporter – Save Gemini to PDF, Word, Google Docs and Notion

chromewebstore.google.com
3 points·by backrun·4 माह पहले·2 comments

Gemini Exporter – Export Gemini Chat to PDF, Word, and Notion in One Click

4 points·by backrun·4 माह पहले·2 comments

[untitled]

1 points·by backrun·4 माह पहले·0 comments

ChatGPT to PDF Extension – export ChatGPT chats to a clean PDF in one click

chromewebstore.google.com
1 points·by backrun·5 माह पहले·2 comments

Every Way to Export ChatGPT Conversations

chromewebstore.google.com
2 points·by backrun·5 माह पहले·3 comments

comments

backrun
·परसों·discuss
try this gemini to wor or pdf extension yesterday. Exported a long response, table came out clean in word. didn't expect it work that well
backrun
·5 दिन पहले·discuss
Nice idea. Curious how well it handle tables and images
backrun
·17 दिन पहले·discuss
I suspect the most the reliable approach is to stop treating the model as the syntax checker. Let it propose a small diff, then run the result through check-parens, the language parser, or a formatter before accepting the change. if valifation fails, feed back the excat parser error and smallest affected form rather than the entire file
backrun
·पिछला माह·discuss
tried HTML deployer after generating a landing page in Claude. Had a live URL before I finished my coffee. Thanks
backrun
·2 माह पहले·discuss
I used it for a few long ChatGPT threads with code and tables. Copy-paste usually messes up the formatting, but this saved it pretty cleanly.

Good extension.
backrun
·2 माह पहले·discuss
[dead]
backrun
·2 माह पहले·discuss
Installed it. Exported a long research thread to Notion and it came through clean. The code blocks actually preserved formatting which I did not expect.
backrun
·3 माह पहले·discuss
[dead]
backrun
·3 माह पहले·discuss
[dead]
backrun
·4 माह पहले·discuss
[dead]
backrun
·4 माह पहले·discuss
I've been looking for a proper Gemini to Word converter for months. Every tool I tried either flattened the code blocks or just exported plain text with no structure. Does this actually preserve heading hierarchy in the DOCX output?
backrun
·4 माह पहले·discuss
The biggest problem when you export Gemini chat isn't finding a method — it's that almost every method destroys your formatting.

Code blocks collapse into plain text. Tables fall apart. Bold and italic disappear. I went through every option available and documented exactly what breaks and what doesn't.

1. Manual copy-paste (everyone's default)

Paste into Word: gray backgrounds, broken tables, lost structure.

Paste without formatting (Ctrl+Shift+V): bold, code, tables — all gone.

Either way, formatting loses.

2. Print to PDF (Ctrl+P → Save as PDF)

Exports the entire browser UI — menus, avatars, input box included.

Long code blocks get cut mid-page. Looks nothing like a clean document.

3. Gemini's built-in "Export to Docs" button

Only exports single responses, not the full thread.

Useless for long research sessions. Tables still shift on complex layouts.

4. Share link

Creates a read-only public URL — not a file.

Doesn't solve the export Gemini chat to document problem at all.

5. Google Takeout

Exports full history as raw HTML or JSON.

Technically complete, practically unreadable for day-to-day work.

6. Chrome extension (the only one that actually works)

After going through all of the above, I built Gemini Exporter — a Chrome extension that exports Gemini chat to Word, PDF, Google Docs, or Notion while preserving everything: code blocks, tables, headings, math notation, full conversation structure.

One click. Nothing leaves your browser for Word and PDF exports.

More info: https://backrun.co/gemini-exporter
backrun
·4 माह पहले·discuss
Really cool project. I like that you are focusing on preserving code and context instead of doing a naive text replacement pass. The one click GUI approach also makes this much more accessible for ROM hack communities that are not very technical. Curious how well it handles edge cases like custom text encodings, variable width fonts, and script expansion when the translated text is much longer than the original.
backrun
·4 माह पहले·discuss
Damn, HN is almost my age too.
backrun
·4 माह पहले·discuss
Thanks so much, this genuinely means a lot.

Gemini Exporter came from the exact same frustration, so it is great to hear it helped you. For anyone who wants to try it, here is the extension: https://chromewebstore.google.com/detail/gemini-exporter-sav...

Really appreciate the support, and I would love to hear any feedback as you keep using Gemini Exporter, especially on longer chats or code-heavy conversations.
backrun
·4 माह पहले·discuss
Interesting project. Monitoring how ChatGPT, Gemini, and Claude cite a site over time feels genuinely useful, especially since most teams currently have to rely on scattered manual checks. I also like that Canonry is self-hosted and SQLite-based instead of being another black-box dashboard. Curious how you handle query selection and repeatability so the visibility scores stay comparable over time.
backrun
·4 माह पहले·discuss
[dead]
backrun
·4 माह पहले·discuss
[dead]
backrun
·4 माह पहले·discuss
Good question — that is exactly where tools like this either become useful or fall apart.

For DOM changes, I try not to couple the parser too tightly to fragile selectors. The extraction layer leans more on structural patterns in the rendered chat tree, and I keep the export pipeline separate from the Gemini-specific parsing so I can update that layer without rewriting the whole exporter.

For tricky formatting cases:

nested markdown is normalized into an intermediate representation first, then mapped to Word, PDF, Google Docs, or Notion

code blocks are preserved as their own block type so they do not get flattened into regular paragraph text

large tables are probably the weakest area right now, especially when Gemini renders them inconsistently or with wrapped cells

I am also building a small regression set from real chats, so when Gemini changes something in the UI I can catch breakage faster instead of fixing issues one by one.

Still early, so I would not claim every edge case is solved yet. The goal is to fail gracefully: preserve the content first, then keep as much structure as possible.

If you have a nasty sample with nested markdown, wide tables, or code-heavy output, I would genuinely love to test against it.
backrun
·4 माह पहले·discuss
I built Gemini Exporter because I use Gemini daily for research and coding, but getting the formatted output—especially complex markdown, tables, and code blocks—into my workspace was a frustrating copy-paste exercise that often broke the formatting.

It's a browser extension that injects export options directly into the Gemini UI, allowing you to push conversations to Notion, Google Docs, or download them as Word/PDF files with a single click.

How it works: > Under the hood, it parses the chat DOM to extract the raw markdown and context. For local exports (PDF/Word), the file generation is handled entirely client-side. For cloud exports (Notion/Google Docs), it connects to their respective APIs, ensuring the markdown syntax is properly converted into Notion blocks or Google Docs formatting.

A note on privacy: > Since chat history can contain sensitive data, privacy was a priority. The extension does not collect, track, or route your conversations through any middleman servers. Everything is processed locally in your browser, and API keys (like your Notion integration token) are stored strictly in your local browser storage.

I'd love for you to try it out. I’m currently looking for feedback on how it handles complex code snippets or edge-case formatting. Happy to answer any technical questions about building it or the DOM parsing process!