{ "manifest_version": 3, "name": "ContextKeeper — Stateful AI Context", "version": "1.0.0", "description": "Capture, persist, and restore AI coding session context across sessions. Never repeat yourself to an AI again.", "permissions": ["storage", "activeTab", "scripting"], "host_permissions": [ "https://chat.openai.com/*", "https://chatgpt.com/*", "https://claude.ai/*", "https://cursor.sh/*", "https://aistudio.google.com/*", "https://gemini.google.com/*", "https://copilot.microsoft.com/*", "https://github.com/copilot/*" ], "action": { "default_popup": "src/popup/popup.html", "default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "background": { "service_worker": "src/background.ts", "type": "module" }, "content_scripts": [ { "matches": [ "https://chat.openai.com/*", "https://chatgpt.com/*", "https://claude.ai/*", "https://cursor.sh/*", "https://aistudio.google.com/*", "https://gemini.google.com/*", "https://copilot.microsoft.com/*", "https://github.com/copilot/*" ], "js": ["src/content.ts"], "run_at": "document_idle" } ], "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }