mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
30 lines
No EOL
565 B
JSON
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"
|
|
}
|
|
} |