supermemory/apps/extension/manifest.json
2024-06-24 03:54:53 +05:30

30 lines
No EOL
565 B
JSON

{
"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": [
"<all_urls>"
],
"js": [
"./content/content.tsx"
]
}
],
"icons": {
"16": "public/icon/logo(16).png",
"48": "public/icon/logo(48).png"
}
}