aboutsummaryrefslogtreecommitdiff
path: root/apps/extension/manifest.json
blob: 144f9d5e377ef851e10f04de3f8dafa0f452f061 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  "manifest_version": 3,
  "version": "2.0",
  "name": "supermemory",
  "description": "An extension for https://supermemory.ai - an AI hub for all your bookmarks.",
  "background": {
    "service_worker": "./background.ts"
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["./content/content.tsx"]
    }
  ],
  "icons": {
    "16": "public/icon/icon_16.png",
    "48": "public/icon/icon_48.png"
  },
  "web_accessible_resources": [
    {
      "resources": ["public/*/**"],
      "matches": ["<all_urls>"]
    }
  ],
  "permissions": ["webRequest", "storage"],
  "host_permissions": ["https://x.com/*", "https://twitter.com/*"]
}