-
Notifications
You must be signed in to change notification settings - Fork 14
/
manifest.json
executable file
·48 lines (48 loc) · 1.19 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
{
"name": "Planner Helper",
"version": "2.4.2",
"manifest_version": 2,
"homepage_url": "https://act.ucsd.edu/webreg2/start",
"description": "Hooks the class planner up to CAPE and Grade Distributions",
"icons": {
"16": "icons/icon16x16.png",
"32": "icons/icon32x32.png",
"48": "icons/icon48x48.png",
"128": "icons/icon128x128.png"
},
"background": {
"scripts": [
"src/bg/background.js"
],
"persistent": true
},
"permissions": [
"http://asucsd.ucsd.edu/*",
"https://act.ucsd.edu/webreg2/*",
"http://*.ucsd.edu/*",
"http://search.mtvnservices.com/*",
"http://*.mtvnservices.com/*",
"http://search.mtvnservices.com/typeahead/suggest/*",
"http://www.ratemyprofessors.com/*"
],
"content_scripts": [
{
"matches": [
"https://act.ucsd.edu/webreg2/*"
],
"js": [
"js/jquery.min.js",
"js/underscore.min.js",
"src/inject/error_handler.js",
"src/inject/data_section.js",
"src/inject/gradeDist.js",
"src/inject/cape.js",
"src/inject/planner_helper.js",
"src/inject/inject.js"
],
"css": [
"src/inject/inject.css"
]
}
]
}