-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
48 lines (48 loc) · 1.31 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
{
"manifest_version": 3,
"name": "Rutgers JudgeMyProfessor",
"description": "Seamlessly integrates with the Rutgers course registration system to provide valuable information about your professors",
"version": "2.1.0",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*://sims.rutgers.edu/webreg/*",
"*://sis.rutgers.edu/soc/*",
"*://sis.rutgers.edu/oldsoc/*",
"*://sims.rutgers.edu/csp/*",
"*://classes.rutgers.edu/*"
],
"js": [
"./src/js/content.js"
],
"css": ["./src/css/styles.css"],
"all_frames": true
}
],
"icons": {
"16": "./src/assets/icons/logo16.png",
"32": "./src/assets/icons/logo32.png",
"48": "./src/assets/icons/logo48.png",
"96": "./src/assets/icons/logo96.png",
"128": "./src/assets/icons/logo128.png"
},
"host_permissions": [
"https://www.ratemyprofessors.com/graphql/"
],
"background": {
"service_worker": "./src/js/background.js"
},
"action": {
"default_icon": {
"16": "./src/assets/icons/logo16.png",
"32": "./src/assets/icons/logo32.png",
"48": "./src/assets/icons/logo48.png",
"96": "./src/assets/icons/logo96.png",
"128": "./src/assets/icons/logo128.png"
},
"default_popup": "./src/html/popup.html"
}
}