-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 1.19 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
{
"name": "RateMyGWU",
"version": "1.0",
"description": "Displays Rate My Professors information directly on the GW schedule of classes",
"permissions": ["*://www.ratemyprofessors.com/*", "http://fonts.googleapis.com/", "https://fonts.googleapis.com/"],
"web_accessible_resources": [
"css/rate.css",
"fonts/Manrope/Manrope-VariableFont_wght.ttf"
],
"background": {
"scripts": ["/js/jquery-3.5.1.min.js", "/js/background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://my.gwu.edu/mod/pws/courses.cfm?campId=*&termId=*&subjId=*"],
"js": ["/js/jquery-3.5.1.min.js", "/js/injectRate.js"],
"css" : ["/css/rate.css"],
"run_at" : "document_end"
}
],
"page_action": {
"default_icon": {
"16": "images/RateMyGWULogo16.png",
"32": "images/RateMyGWULogo32.png",
"48": "images/RateMyGWULogo48.png",
"128": "images/RateMyGWULogo128.png"
}
},
"icons": {
"16": "images/RateMyGWULogo16.png",
"32": "images/RateMyGWULogo32.png",
"48": "images/RateMyGWULogo48.png",
"128": "images/RateMyGWULogo128.png"
},
"manifest_version": 2
}