forked from j-delaney/planner-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·52 lines (52 loc) · 1.22 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
49
50
51
52
{
"name": "Planner Helper",
"version": "1.0.1",
"manifest_version": 2,
"description": "Hooks the class planner up to Rate My Professor, CAPE, and Grade Distributions",
"homepage_url": "http://jdelaney.org/",
"icons": {
"16": "icons/calendar16.png",
"48": "icons/calendar48.png",
"128": "icons/calendar128.png"
},
"background": {
"scripts": [
"src/bg/background.js"
],
"persistent": true
},
"permissions": [
"https://act.ucsd.edu/classPlanner/planner",
"http://act.ucsd.edu/classPlanner/planner",
"https://act.ucsd.edu/classPlanner/*",
"http://act.ucsd.edu/classPlanner/*",
"http://asucsd.ucsd.edu/*",
"http://*.ucsd.edu/*",
"http://*/",
"https://*/"
],
"content_scripts": [
{
"matches": [
"https://act.ucsd.edu/classPlanner/*"
],
"css": [
"src/inject/inject.css"
]
},
{
"matches": [
"https://act.ucsd.edu/classPlanner/*"
],
"js": [
"js/jquery.min.js",
"src/inject/data_section.js",
"src/inject/gradeDist.js",
"src/inject/cape.js",
"src/inject/rmp.js",
"src/inject/planner_helper.js",
"src/inject/inject.js"
]
}
]
}