aboutsummaryrefslogtreecommitdiff
path: root/webext/chrome/manifest.json
blob: 977b83c7e880c37f34e1336eec4897e152f2ca06 (plain)
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
28
29
30
{
  "manifest_version": 3,
  "name": "Cerberus Password Manager",
  "version": "0.1.0",
  "description": "Auto-fill and manage passwords with Cerberus.",
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "scripting",
    "nativeMessaging"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "Cerberus",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["content.js"],
      "run_at": "document_end"
    }
  ]
}