forked from SkateFish/auroracoin-browser-wallet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
33 lines (27 loc) · 921 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
{
"manifest_version": 2,
"name": "Auroracoin Browser Wallet",
"author": "Andrew Toth, modifed by Joseph Lee, SkateFish, and Auroracoin101",
"description": "Auroracoin wallet in the browser. Send and receive instantly on any web page.",
"version": "2.1.2",
"icons": {
"16": "data/auroracoin16.png",
"24": "data/auroracoin24.png",
"48": "data/auroracoin48.png",
"128": "data/auroracoin128.png"
},
"content_security_policy": "script-src 'self' ; object-src 'self';",
"permissions": [ "storage"],
"web_accessible_resources": [
"data/*"
],
"browser_action": {
"default_icon": {
"16": "data/auroracoin16.png",
"24": "data/auroracoin24.png",
"32": "data/auroracoin32.png"
},
"default_title": "Auroracoin Browser Wallet",
"default_popup": "data/index.html"
}
}