supermemory/apps/extension/manifest.json
2025-02-18 20:43:29 -07:00

50 lines
1.2 KiB
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": ["*://*/*"],
"chromium:background": {
"service_worker": "src/background.ts"
},
"firefox:background": {
"scripts": ["src/background.ts"]
},
"action": {},
"externally_connectable": {
"matches": [
"http://localhost:3000/*",
"https://supermemory.ai/*",
"https://beta.supermemory.ai/*",
"http://supermemory.com/*"
]
},
"firefox:content_scripts": [{
"matches": [
"http://localhost:3000/*",
"https://supermemory.ai/*",
"https://beta.supermemory.ai/*",
"http://supermemory.com/*"
],
"js": ["src/firefox/content.ts"]
}
],
"icons": {
"16": "images/icon/16.png",
"32": "images/icon/32.png",
"48": "images/icon/48.png",
"128": "images/icon/128.png"
}
}