-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
33 lines (33 loc) · 878 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
{
"name": "Crypto Alert",
"version": "1.0",
"description": "Your favorite cryptocurrencies monitored for you.",
"manifest_version": 2,
"permissions": [
"https://min-api.cryptocompare.com/",
"https://www.cryptocompare.com/",
"storage",
"notifications",
"alarms"
],
"background": {
"scripts": ["js/price.js", "js/background.js", "js/options.js"]
},
"browser_action": {
"default_icon": "data/icon.png",
"default_popup": "popup.html"
},
"options_ui": {
// Required.
"page": "options.html",
// Recommended.
"chrome_style": true,
// Not recommended; only provided for backwards compatibility,
// and will be unsupported in a future version of Chrome (TBD).
"open_in_tab": true
},
"web_accessible_resources": [
// Declare any images as "abc.png" that are used with createNotification()
"data/icon.png"
]
}