-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
83 lines (83 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"manifest_version": 2,
"name": "Keywi",
"version": "2.0.0beta10",
"description": "__MSG_extensionDescription__",
"icons": {
"48": "icons/keywi-48.png",
"96": "icons/keywi-96.png"
},
"background": {
"scripts": [
"vendor/browser-polyfill.js",
"vendor/utf8.js",
"vendor/aes.js",
"vendor/cryptoHelpers.js",
"vendor/nacl.js",
"vendor/nacl-util.js",
"vendor/debounce.js",
"background/lib/dialog.js",
"background/lib/polyfill.js",
"background/Crypto.js",
"background/Keywi.js",
"background/lib/PasswordBackend.js",
"background/lib/KeepassXCState.js",
"background/lib/KeepassXCBackend.js",
"background/securestorage.js",
"background/LocalSecureStorage.js",
"dialog/background.js",
"background/contextmenu.js",
"background/commands.js",
"background/request.js",
"background/init.js",
"background/basicauth.js"
]
},
"permissions": [
"http://localhost/",
"<all_urls>",
"contextMenus",
"tabs",
"storage",
"notifications",
"webRequest",
"webRequestBlocking",
"nativeMessaging",
"contextualIdentities"
],
"incognito": "spanning",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["vendor/browser-polyfill.js", "content_scripts/fill-username-and-password.js", "content_scripts/hacks.js"],
"run_at": "document_end",
"all_frames": true
}
],
"options_ui": {
"page": "options/options.html"
},
"commands": {
"fill-form": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "__MSG_fillUsernamePassDescription__"
},
"fill-password": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"mac": "MacCtrl+Shift+D"
},
"description": "__MSG_fillPassDescription__"
}
},
"applications": {
"gecko": {
"id": "keywi-ff-add-on@ledfan.be",
"strict_min_version": "60.0"
}
},
"default_locale": "en"
}