-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
44 lines (38 loc) · 913 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
34
35
36
37
38
39
40
41
42
43
44
{
"manifest_version": 2,
"name": "DivvyBrags",
"description": "Liberate your bikeshare data.",
"version": "2.3.3",
"icons": {
"48": "icon48.png"
},
"content_scripts": [
{
"matches": ["https://www.divvybikes.com/account/trips","https://www.divvybikes.com/account/trips/*"],
"js": [
"jquery.js",
"highcharts.js",
"jquery.livequery.js",
"background.js"
],
"css": ["background.css"]
}
],
"web_accessible_resources": [
"jquery.js",
"jquery.livequery.js",
"highcharts.js",
"background.js",
"background.css",
"ajax-loader.gif",
"twitter_logo_white.png",
"star_icon_white.png",
"station_distances_by_bicycle.csv",
"api_key.json"
],
"permissions": [
"http://divvybrags-leaderboard.herokuapp.com/",
"https://maps.googleapis.com/maps/api/distancematrix/json",
"storage"
]
}