-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (41 loc) · 1.06 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
{
"manifest_version": 2,
"name": "leCrypt",
"description": "A secure and decentralised password manager",
"version": "1.0.0",
"icons": {
"16": "icons/icon16.png",
"19": "icons/icon19.png",
"32": "icons/icon32.png",
"38": "icons/icon38.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png"
},
"permissions": ["activeTab", "idle", "storage", "tabs", "<all_urls>"],
"background": {
"scripts": ["js/jquery.js", "js/crypto-js.min.js", "js/helperfuncs.js", "js/constants.js", "js/background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/autofill.js"]
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Alt+Shift+C",
"mac": "Alt+Shift+C",
"chromeos": "Alt+Shift+C",
"linux": "Alt+Shift+C"
}
}
},
"browser_action": {
"default_icon": "icons/icon64.png",
"default_title": "leCrypt",
"default_popup": "popup.html"
},
"web_accessible_resources": ["js/autofill.js"]
}