mirror of
https://github.com/agoramachina/claude-exporter.git
synced 2026-07-10 00:12:08 +00:00
Major restructuring: - Created chrome/ and firefox/ directories with complete, standalone extensions - Removed switch scripts - no longer needed with separate folders - Each folder is ready to load directly in its respective browser Plain text export improvements: - Removed abbreviation of "Human:" and "Assistant:" labels - Now uses full labels throughout for better readability Documentation updates: - Updated README with new folder structure - Simplified installation instructions (just point to chrome/ or firefox/) - Updated FIREFOX_INSTALL.md to reflect new structure - Updated file structure diagram to show new organization This makes the extension easier to use - just load the appropriate folder!
22 lines
No EOL
494 B
CSS
22 lines
No EOL
494 B
CSS
/* Optional: Add a floating export button on Claude.ai pages */
|
|
.claude-exporter-button {
|
|
position: fixed;
|
|
bottom: 20px;
|
|
right: 20px;
|
|
z-index: 9999;
|
|
background: #5436DA;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 50%;
|
|
width: 60px;
|
|
height: 60px;
|
|
font-size: 24px;
|
|
cursor: pointer;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.claude-exporter-button:hover {
|
|
background: #4329B8;
|
|
transform: scale(1.1);
|
|
} |