-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
49 lines (48 loc) · 1 KB
/
manifest.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "keepassxc-mail",
"description": "MailExtension to talk to keepassxc",
"version": "1.9",
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"background": {
"scripts": [
"from-keepassxc-browser/nacl.min.js",
"from-keepassxc-browser/nacl-util.min.js",
"global.js",
"from-keepassxc-browser/client.js",
"from-keepassxc-browser/keepass.js",
"main.js"
]
},
"options_ui": {
"browser_style": true,
"page": "options/options.html"
},
"author": "Korbinian Kapsner",
"permissions": [
"nativeMessaging",
"storage",
"https://api.github.com/"
],
"experiment_apis": {
"credentials": {
"schema": "experiment/schema.json",
"parent": {
"scopes": ["addon_parent"],
"paths": [["credentials"]],
"script": "experiment/implementation.js"
}
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "74.0",
"strict_max_version": "132.0"
}
},
"default_locale": "en",
"manifest_version": 2
}