forked from Dmitry1987/vault-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (40 loc) · 988 Bytes
/
Copy pathmanifest.json
File metadata and controls
40 lines (40 loc) · 988 Bytes
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": 3,
"name": "VaultPass",
"description": "A Chrome extension to leverage Hashicorp Vault as Credential Storage for teams",
"version": "2.7",
"browser_specific_settings": {
"gecko": {
"id": "addon@blum.coffee"
}
},
"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": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["compat.js", "content.js", "common.js"]
}
],
"background": {
"service_worker": "background.js",
"scripts": ["background.js"]
},
"permissions": ["activeTab", "storage", "clipboardWrite", "idle", "alarms"],
"web_accessible_resources": [
{
"resources": ["chooseMatch.html"],
"matches": ["<all_urls>"]
}
]
}