forked from sclem/pfcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
29 lines (29 loc) · 853 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
{
"name": "pfcrypto",
"short_name": "personal finance crypto tracker",
"version": "1.2.0",
"manifest_version": 2,
"description": "cryptocurrency holdings updater",
"icons": {
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"permissions": [
"https://home.personalcapital.com/page/login/app*",
"https://home.personalcapital.com/api/*",
"https://api.alternative.me/v1/ticker/",
"https://api.blockcypher.com/v1/*",
"https://api.ethplorer.io/getAddressInfo/*"
],
"content_scripts": [{
"matches": [
"https://home.personalcapital.com/page/login/app*"
],
"js": ["personalcapital.js"],
"run_at": "document_idle"
}]
}