forked from AltcoinCoop/mynt-wallet-chrome
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
50 lines (50 loc) · 1.2 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
{
"manifest_version": 2,
"name": "Monero Wallet for Google Chrome™",
"short_name":"Monero Wallet",
"author": "bigreddmachine",
"version": "0.10.2",
"version_name": "0.10.2-beta",
"description": "A Chrome™ extension for using monero-wallet-rpc",
"icons": {
"128":"data/img/logo128.png",
"256":"data/img/logo256.png",
"686":"data/img/logo686.png"
},
"browser_action": {
"default_icon": {
"19": "data/img/logo19.png",
"38": "data/img/logo38.png"
},
"default_title": "Monero Wallet for Google Chrome™",
"default_popup": "data/html/popup.html"
},
"options_ui": {
"page": "data/html/options.html",
"chrome_style": true
},
"background": {
"scripts": [
"lib/js/deps/json-bigint/json-bigint.js",
"lib/js/utils/funcs.js",
"lib/js/utils/wallet-rpc.js",
"lib/js/background/uri-relay.js",
"lib/js/background/wallet.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/js/content/uri-checker.js"],
"all_frames": true,
"run_at": "document_end"
}
],
"permissions": [
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"http://127.0.0.1/*"
]
}