aboutsummaryrefslogtreecommitdiff
path: root/webext/firefox/manifest.json
blob: 12b2e7a8aefc178b8451881c3fe703b5bab6d14b (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
31
32
33
34
35
{
  "manifest_version": 2,
  "name": "Cerberus Password Manager",
  "version": "0.1.0",
  "description": "Auto-fill and manage passwords with Cerberus.",
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "tabs",
    "nativeMessaging",
    "<all_urls>"
  ],
  "background": {
    "scripts": ["background.js"],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["content.js"],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_title": "Cerberus",
    "default_popup": "popup.html"
  }
  ,
  "browser_specific_settings": {
    "gecko": {
      "id": "cerberus@example.com"
    }
  }
}