forked from BlockProject/b-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1.21 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
{
"name": "b.lock Password Manager",
"version": "1.0.6",
"description": "Blockchain-powered Password Manager",
"manifest_version": 2,
"author": "BlockProject",
"background": {
"page": "background.html",
"persistent": true
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["thirdparty/jquery-3.3.1.min.js", "js/content.js"]
}
],
"options_page": "options.html",
"browser_action": {
"default_popup": "popup.html",
"default_title": "b.lock",
"default_icon": {
"16": "images/block_logo-16px.png",
"32": "images/block_logo-32px.png",
"48": "images/block_logo-64px.png",
"128": "images/block_logo-128px.png"
}
},
"icons": {
"16": "images/block_logo-16px.png",
"32": "images/block_logo-32px.png",
"48": "images/block_logo-64px.png",
"128": "images/block_logo-128px.png"
},
"web_accessible_resources": [
"html/save-popup.html"
],
"permissions": ["activeTab", "declarativeContent", "storage", "tabs"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"images/*.png",
"js/*",
"thirdparty/*",
"html/*",
"css/*"
]
}