-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (31 loc) · 1.02 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
{
"manifest_version": 2,
"name": "Cal-Meal-Tracker",
"version": "0.1.7",
"description": "partitions meals into weeks, when it gets refreshed on Sundays (UC Berkeley)",
"developer": {
"name": "Derick Tseng",
"url": "https://github.com/derickboss1/Cal-Meal-Tracker"
},
"author": "Derick Tseng",
"permissions": [
"https://services.housing.berkeley.edu/c1c/dyn/bals.asp?pln=rb"
],
"content_scripts": [
{
"matches": ["https://services.housing.berkeley.edu/c1c/dyn/bals.asp?pln=rb"],
"js": ["src/meal-tracker.js"]
}
],
"applications": {
"gecko": {
"id": "cal-meal-tracker@derickboss1.addons.mozilla.org",
"update_url": "https://raw.githubusercontent.com/derickboss1/Cal-Meal-Tracker/master/updates.json"
}
},
"browser_specific_settings": {
"gecko": {
"update_url": "https://raw.githubusercontent.com/derickboss1/Cal-Meal-Tracker/master/updates.json"
}
}
}