Export ALL conversations from a Claude Project with ease
🚨 Important Update: Bookmarklets No Longer Work
Due to modern browser security policies (Content Security Policy), bookmarklets cannot load external scripts or run large inline code on sites like claude.ai.
We've replaced the broken bookmarklet approach with two reliable methods below.
Method
Ease of Use
Browser Support
Auto-Updates
Security
🖥️ Console Method
Medium
✅ All Browsers
❌ Manual
✅ High
🔧 Tampermonkey
Easy
✅ Chrome, Firefox, Edge
✅ Automatic
✅ High
📑 Bookmarklet
Easy
❌ Blocked by CSP
❌ No
❌ Blocked
📦 Installation Methods
🖥️ Method 1: Browser Console (100% Reliable)
Works on ALL browsers and bypasses ALL security restrictions
✅ Pros:
Works on every browser
No extensions needed
Bypasses all CSP restrictions
Always up-to-date script
❌ Cons:
Need to paste code each time
Requires opening console (F12)
Slightly more technical
Step 1: Navigate to a Claude Project page
URL should look like: https://claude.ai/project/12345678-1234-1234-1234-123456789abc
Step 2: Open browser console
Press F12 or right-click → "Inspect" → "Console" tab
Step 3: Copy and paste this code:
⚠️ Note: If script loading fails (due to Content-Type headers), use the full script copy method below instead.
// Loading the latest version of Claude Project Exporter...
var script = document.createElement('script');
script.src = 'https://raw.githubusercontent.com/withLinda/claude-project-conversations-exporter/main/claude_project_export_script.js?v=' + Date.now();
script.onerror = function() {
console.error('❌ Failed to load script. Please check your internet connection or try the manual method.');
};
script.onload = function() {
console.log('✅ Script loaded successfully! Export will start automatically...');
};
document.head.appendChild(script);
Alternative (More Reliable): Copy full script content: