-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
41 lines (41 loc) · 982 Bytes
/
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
{
"name": "Wallet",
"short_name": "Wallet",
"version": "1.3.1",
"manifest_version": 2,
"description": "Wallet",
"homepage_url": "https://swaponline.io/",
"theme_color": "#fff",
"background_color": "#fff",
"icons": [
{
"src": "extension/images/icons/icon-16.png",
"type": "image/png",
"sizes": "16x16"
},
{
"src": "extension/images/icons/icon-32.png",
"type": "image/png",
"sizes": "32x32"
},
{
"src": "extension/images/icons/icon-196.png",
"type": "image/png",
"sizes": "192x192"
}
],
"options_page": "application/index.html",
"browser_action": {
"default_icon": "extension/images/icons/icon-32.png",
"default_title": "Wallet"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": ["./extension/js/background.js"],
"persistent": false
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"start_url": "/"
}