forked from Dmitry1987/vault-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 38
/
manifestV2.json
40 lines (40 loc) · 935 Bytes
/
manifestV2.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
{
"manifest_version": 2,
"name": "VaultPass",
"description": "A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams",
"version": "2.3.4",
"browser_action": {
"default_icon": "icons/logo128.png",
"default_popup": "popup.html",
"default_title": "VaultPass"
},
"icons": {
"48": "icons/logo48.png",
"128": "icons/logo128.png"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["browser-polyfill.min.js", "content.js", "common.js"]
}
],
"background": {
"scripts": ["browser-polyfill.min.js", "background.js"],
"persistent": false
},
"permissions": [
"activeTab",
"storage",
"clipboardWrite",
"idle",
"alarms",
"http://*/*",
"https://*/*"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}