mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-10 22:41:17 +00:00
37 lines
908 B
JSON
37 lines
908 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/chrome-manifest.json",
|
|
"manifest_version": 3,
|
|
"version": "5.0.200",
|
|
"homepage_url": "https://supermemory.ai",
|
|
"name": "Supermemory",
|
|
"description": "An extension for https://supermemory.ai - an AI hub for all your knowledge.",
|
|
"author": "Dhravya Shah",
|
|
"permissions": [
|
|
"activeTab",
|
|
"scripting",
|
|
"tabs",
|
|
"management",
|
|
"webRequest",
|
|
"storage",
|
|
"bookmarks"
|
|
],
|
|
"host_permissions": ["*://*/*"],
|
|
"background": {
|
|
"service_worker": "src/background.ts"
|
|
},
|
|
"action": {},
|
|
"externally_connectable": {
|
|
"matches": [
|
|
"http://localhost:3000/*",
|
|
"https://supermemory.ai/*",
|
|
"https://beta.supermemory.ai/*",
|
|
"http://supermemory.com/*"
|
|
]
|
|
},
|
|
"icons": {
|
|
"16": "images/icon/16.png",
|
|
"32": "images/icon/32.png",
|
|
"48": "images/icon/48.png",
|
|
"128": "images/icon/128.png"
|
|
}
|
|
}
|