{ "name": "Supermemory.ai-Extension", "description": "Uses the chrome.contextMenus API to customize the context menu.", "version": "0.1", "permissions": [ "contextMenus" ], "manifest_version": 3, "action": { "default_popup": "index.html" }, "background": { "service_worker": "./background.ts" }, "content_scripts": [ { "matches": [ "" ], "js": [ "./content/content.tsx" ] } ], "icons": { "16": "public/icon/logo(16).png", "48": "public/icon/logo(48).png" } }