-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
39 lines (39 loc) · 1.11 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
{
"manifest_version": 3,
"name": "Vandy Scheduler",
"version": "0.0.0",
"description": "This extension organizes your potential classes and Vanderbilt YES class cart into a schedule for the upcoming semester.",
"icons": {
"16": "png/schedule-icon16.png",
"32": "png/schedule-icon32.png",
"48": "png/schedule-icon48.png",
"64": "png/schedule-icon64.png",
"128": "png/schedule-icon128.png"
},
"content_scripts": [
{
"matches": ["*://*.vanderbilt.edu/more/SearchClasses*"],
"js": ["dist/content_scripts/index.js"],
"css": ["css/myButton.css", "css/modal.css"],
"all_frames": true
}
],
"background": {
"service_worker": "dist/service_worker/background.js",
"type": "module"
},
"host_permissions": [
"*://*.vanderbilt.edu/more/SearchClasses*",
"https://www.ratemyprofessors.com/**"
],
"permissions": ["storage"],
"web_accessible_resources": [
{
"resources": ["png/comment-pic2.png", "png/comment-pic3.png"],
"extension_ids": [
"ofkamcklfkpakjddlappmemldnnapina",
"bbgdeeaaalopmnonoppapmgkimnickoa"
]
}
]
}