-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
32 lines (31 loc) · 840 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
{
"manifest_version": 3,
"name": "AIUB CGPA Chart",
"version": "1.0",
"description": "Adds a GPA chart to the AIUB student portal",
"permissions": ["activeTab", "scripting"],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/grade.png",
"48": "images/grade.png",
"128": "images/grade.png"
}
},
"content_scripts": [
{
"matches": ["https://portal.aiub.edu/Student/GradeReport/BySemester*"],
"js": ["libs/chart.min.js", "main.js"],
"run_at": "document_start"
}
],
"web_accessible_resources": [{
"resources": ["libs/chart.min.js"],
"matches": ["<all_urls>"]
}],
"icons": {
"16": "images/grade.png",
"48": "images/grade.png",
"128": "images/grade.png"
}
}