Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Savelore \u2013 Save & Organize ChatGPT & Claude Responses | Local & Private", "version": "1.3.4", "description": "Save and organize ChatGPT & Claude responses with one click. Local, private, offline, and fully searchable.", "homepage_url": "https:\/\/savelore.app", "permissions": [ "storage", "activeTab", "clipboardRead" ], "host_permissions": [ "https:\/\/chatgpt.com\/*", "https:\/\/claude.ai\/*", "https:\/\/gemini.google.com\/*" ], "commands": { "toggle-sidebar": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "Toggle Savelore sidebar" } }, "web_accessible_resources": [ { "resources": [ "sidebar.html", "snippet.html", "extension.html", "assets\/*", "miniTabLogo.png", "modalLogo.png", "content-modal.js", "content-utils.js", "content-toast.js" ], "matches": [ "<all_urls>" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "Savelore", "default_icon": { "16": "logo.png", "48": "logo.png", "128": "logo.png" } }, "content_scripts": [ { "matches": [ "https:\/\/chatgpt.com\/*" ], "js": [ "content-utils.js", "content-toast.js", "content-modal.js", "content-extraction.js", "content-claude-artifacts.js", "content.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/claude.ai\/*" ], "js": [ "content-utils.js", "content-toast.js", "content-modal.js", "content-extraction.js", "content-claude-artifacts.js", "content.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/gemini.google.com\/*" ], "js": [ "content-utils.js", "content-toast.js", "content-modal.js", "content-extraction.js", "content-claude-artifacts.js", "content.js" ] }, { "matches": [ "<all_urls>" ], "js": [ "sidebar-injector.js" ], "run_at": "document_idle" } ] }