-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
37 lines (37 loc) · 1006 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
{
"manifest_version": 3,
"name": "UT Course Scheduler",
"description": "Automatically enroll in your selected courses at your registration time for UT Austin!",
"version": "0.0.31",
"action": {
"default_popup": "htmls/index.html",
"default_icon": "images/logo/logo.png"
},
"icons": {
"16": "images/logo/logo16.png",
"32": "images/logo/logo32.png",
"48": "images/logo/logo48.png",
"128": "images/logo/logo128.png"
},
"content_scripts": [
{
"js": ["scripts/load_registration.js"],
"matches": [
"https://utdirect.utexas.edu/registration/chooseSemester.WBX"
]
},
{
"js": ["scripts/registration.js"],
"matches": [
"https://utdirect.utexas.edu/registration/registration.WBX*"
]
}
],
"background": {
"service_worker": "scripts/background.js"
},
"permissions": [
"storage",
"alarms"
]
}