mirror of
https://github.com/agoramachina/claude-exporter.git
synced 2026-07-09 15:59:52 +00:00
- Removed "Test connection" item from the browse settings dropdown
(chrome+firefox HTML + JS handler). Available in Advanced Options.
- Model column "*" bounce marker:
- Color now matches the badge per family (sonnet/opus/haiku/default)
instead of always rendering var(--badge-default) at 0.7 opacity.
- Tooltip on the bounced cell now fires when hovering EITHER the
badge or the asterisk: wrapped both in a .model-cell span that
carries the title + cursor: help.
- Popup header (#header-title) is now populated from manifest.name in
popup.js — testing branch's "Claude Exporter Beta" surfaces in the
popup automatically without a separate HTML edit per branch.
- src/CLAUDE.md extended the existing manifest-name rule to note that
popup.js reads manifest.name into #header-title. (Workspace-root
CLAUDE.md was mirrored locally but isn't tracked in git.)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Claude Exporter Beta",
|
|
"version": "1.10.2",
|
|
"description": "Export conversations and artifacts from Claude.ai",
|
|
"permissions": [
|
|
"activeTab",
|
|
"storage",
|
|
"tabs",
|
|
"https://claude.ai/*"
|
|
],
|
|
"browser_action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
}
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["https://claude.ai/*"],
|
|
"js": ["jszip.min.js", "utils.js", "content.js"],
|
|
"css": ["content.css"]
|
|
}
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"icons": {
|
|
"16": "icon16.png",
|
|
"48": "icon48.png",
|
|
"128": "icon128.png"
|
|
},
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"web_accessible_resources": ["browse.html"],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "{25798758-c184-470a-bb5b-9fa76a09d9b5}",
|
|
"strict_min_version": "79.0",
|
|
"data_collection_permissions": {
|
|
"required": ["none"]
|
|
}
|
|
}
|
|
}
|
|
}
|