forked from kee-org/browser-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
114 lines (114 loc) · 3.37 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"manifest_version": 2,
"name": "Kee",
"default_locale": "en",
"version": "2.6.0",
"version_name": "2.6.0",
"author": "Chris Tomlinson",
"description": "Kee adds free, secure and easy password management features to your browser which save time and keep your private data more secure.",
"background": {
"scripts": [
"lib/dollar-polyfill.js",
"lib/tp/browser-polyfill.min.js",
"lib/moduleHack.js",
"lib/tp/punycode.js",
"lib/moduleUnhack.js",
"lib/pslData.js",
"lib/tp/publicsuffixlist.min.js",
"common/common.js",
"lib/tp/biginteger.js",
"lib/firefoxBug1408996Workaround.js",
"background/app.js"
],
"persistent": true
},
"content_scripts": [{
"all_frames": true,
"matches": ["<all_urls>"],
"js": [
"lib/dollar-polyfill.js",
"lib/tp/browser-polyfill.min.js",
"lib/moduleHack.js",
"lib/tp/punycode.js",
"lib/moduleUnhack.js",
"lib/pslData.js",
"lib/tp/publicsuffixlist.min.js",
"common/common.js",
"lib/firefoxBug1408996Workaround.js",
"page/page.js"
],
"run_at": "document_end"
}],
"icons": {
"16": "common/images/16.png",
"32": "common/images/32.png",
"48": "common/images/48.png",
"64": "common/images/64.png",
"96": "common/images/96.png",
"128": "common/images/128.png"
},
"browser_action": {
"default_icon": {
"16": "common/images/16.png",
"32": "common/images/32.png",
"48": "common/images/48.png",
"64": "common/images/64.png"
},
"default_title": "Kee",
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "settings/settings.html",
"open_in_tab": true
},
"permissions": [
"tabs",
"contextMenus",
"storage",
"clipboardWrite",
"clipboardRead",
"webNavigation",
"activeTab",
"privacy",
"webRequestBlocking",
"webRequest",
"<all_urls>",
"notifications",
"unlimitedStorage"
],
"web_accessible_resources" : [
"panels/*"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+1"
}
},
"primary-action": {
"suggested_key": {
"default": "Ctrl+Shift+2"
},
"description": "__MSG_KB_shortcut_simple_2_desc__"
},
"generate-password": {
"suggested_key": {
"default": "Ctrl+Shift+4"
},
"description": "__MSG_Menu_Button_copyNewPasswordToClipboard_label__"
},
"detect-forms": {
"suggested_key": {
"default": "Ctrl+Shift+6"
},
"description": "__MSG_Menu_Button_fillCurrentDocument_label__"
}
},
"applications": {
"gecko": {
"id": "[email protected]",
"update_url": "https://raw.githubusercontent.com/kee-org/browser-addon-updates/master/beta/update.json",
"strict_min_version": "56.0"
}
}
}