forked from jonluca/USC-Schedule-Helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
67 lines (67 loc) · 1.84 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"author": "Prayaas A.",
"background": {
"page": "background.html",
"persistent": true
},
"browser_action": {
"default_icon": {
"19": "images/icon32.png",
"38": "images/icon.png",
"44": "images/icon64.png",
"50": "images/icon128.png",
"54": "images/icon128.png",
"90": "images/icon128.png",
"128": "images/icon128.png",
"200": "images/icon200.jpg",
"270": "images/icon200.jpg"
},
"default_popup": "html/popup.html",
"default_title": "USC Schedule Helper"
},
"content_scripts": [
{
"matches": [
"*://classes.usc.edu/*/classes/*",
"*://webreg.usc.edu/*"
],
"js": [
"js/libs/jquery.js",
"js/common.js",
"js/libs/moment.js",
"USCScheduleHelper.js",
"js/libs/sweetalert.min.js"
]
}
],
"description": "Shows available seats, professor ratings, and gives you the ability to export your calendar.",
"homepage_url": "https://jonlu.ca",
"icons": {
"54": "images/icon128.png",
"90": "images/icon128.png",
"128": "images/icon128.png",
"200": "images/icon200.jpg",
"270": "images/icon200.jpg",
"400": "images/icon400.jpg"
},
"manifest_version": 2,
"name": "USC Schedule Helper",
"permissions": [
"*://classes.usc.edu/*/classes/*",
"*://webreg.usc.edu/*",
"http://jonlu.ca/*",
"https://jonlu.ca/*",
"storage"
],
"version": "10.0.3",
"version_name": "10.0.3 Edge",
"web_accessible_resources": [
"data/*",
"css/*",
"js/*"
],
"-ms-preload": {
"backgroundScript": "backgroundScriptsAPIBridge.js",
"contentScript": "contentScriptsAPIBridge.js"
}
}