-
Notifications
You must be signed in to change notification settings - Fork 58
/
manifest.json
53 lines (46 loc) · 1.13 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
47
48
49
50
51
52
53
{
"name": "NasExtWallet",
"default_locale": "en",
"description": "The extension for Nebulas Dapp",
"version": "0.2.8.2",
"manifest_version": 2,
"icons": {
"19": "images/icon_19.png",
"38": "images/icon_38.png",
"128": "images/icon_128.png"
},
"permissions": [
"https://*.nebulas.io/",
"activeTab",
"*://*/",
"storage"
],
"background": {
"scripts": [
"html/lib/nebulas.js",
"html/js/1-localSave.js",
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Nebulas",
"default_icon": {
"19": "images/icon_19.png",
"38": "images/icon_38.png"
},
"default_popup": "html/sendNas.html"
},
"content_scripts": [
{
"all_frames": true,
"js": ["contentscript.js"],
"matches": ["file://*/*", "http://*/*", "https://*/*"],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": ["inpage.js"],
"options_page": "html/options.html",
"homepage_url": "https://github.com/nebulasio/WebExtensionWallet"
}