-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
56 lines (56 loc) · 1.25 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
{
"name": "SFU RateMyProfessor Extension",
"version": "1.0.2",
"manifest_version": 3,
"background": {
"service_worker": "src/js/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://sims.erp.sfu.ca/*"
],
"all_frames": true,
"css": ["style.css"],
"js": ["src/js/contentScripts/load_goSfu.js"]
},
{
"matches": [
"https://myschedule.erp.sfu.ca/*"
],
"css": ["style.css"],
"js": ["src/js/contentScripts/load_mySchedule.js"]
}
],
"web_accessible_resources": [
{
"resources": [ "src/*" ],
"matches": [
"https://sims.erp.sfu.ca/*",
"https://myschedule.erp.sfu.ca/*"
]
}
],
"permissions": [
"storage",
"activeTab"
],
"host_permissions": ["https://www.ratemyprofessors.com/*"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "/images/sfu_rmp_logo16_disabled.png",
"32": "/images/sfu_rmp_logo32_disabled.png"
}
},
"icons": {
"16": "/images/sfu_rmp_logo16.png",
"32": "/images/sfu_rmp_logo32.png",
"48": "/images/sfu_rmp_logo48.png",
"128": "/images/sfu_rmp_logo128.png"
},
"sandbox": {
"pages": ["sandbox.html"]
}
}