Greasy Fork is available in English.

Claude Chat Downloader

Add download button to save Claude AI conversations in TXT, MD, or JSON format

نووسەر
papacasper
Daily installs
0
Total installs
11
Ratings
0 0 0
وەشان
2.0 alpha
Created
2024-10-25
Updated
2024-10-28
مۆڵەت
MIT
Applies to

Claude Chat Downloader

A userscript that adds an Export button to Claude.ai, allowing you to download your conversations in multiple formats.

Features

  • 📥 Adds export buttons directly under Chat Controls section
  • 💾 Download conversations in TXT, MD, or JSON formats
  • 🎨 Seamlessly integrates with Claude's UI design
  • 🌓 Supports both light and dark modes
  • 📱 Works on desktop and mobile views
  • 🔍 Preserves code blocks and formatting
  • ✨ Interactive hover states with tooltips
  • 🎯 Single-click export for each format

Installation

  1. Install Tampermonkey for your browser
  2. Click the "Install" button above
  3. Approve the installation in Tampermonkey

Usage

  1. Go to Claude.ai
  2. Open any conversation
  3. Find the format buttons under "Chat controls":
    • TXT: Simple text format with clear speaker labels
    • MD: Markdown format with headers and formatting preserved
    • JSON: Complete conversation data in JSON format
  4. Hover over any button to see format description
  5. Click to download in your preferred format

Export Format Examples

TXT Format

User:
Hello Claude!

Claude:
Hello! How can I help you today?

MD Format

# Claude Chat Export

*Exported on [timestamp]*

### User
Hello Claude!

---

### Claude
Hello! How can I help you today?

---

JSON Format

{
  "chat_messages": [
    {
      "sender": "human",
      "text": "Hello Claude!"
    },
    {
      "sender": "assistant",
      "text": "Hello! How can I help you today?"
    }
  ]
}

Support

Changelog

v2.0 alpha (Current)

  • Redesigned UI to integrate with Chat Controls
  • Added individual format buttons in a row layout
  • Added interactive hover effects and tooltips
  • Improved button placement and styling
  • Enhanced visual feedback
  • Streamlined export process
  • Fixed mobile view compatibility

v1.0 alpha

  • Initial public release
  • Added support for multiple export formats (TXT, MD, JSON)
  • Added mobile view support
  • Improved dark/light mode handling