-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (33 loc) · 864 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
33
34
{
"name": "GPA Calculator(UOC)",
"version": "1.0.1",
"description": "Calculate your GPA from University of Colombo Student Information System.",
"icons": {
"16": "assets/icon_3.png",
"24": "assets/icon_3.png",
"32": "assets/icon_3.png",
"48": "assets/icon_3.png",
"128": "assets/icon_3.png"
},
"permissions": ["storage", "tabs"],
"host_permissions": ["https://sis.cmb.ac.lk/*"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://sis.cmb.ac.lk/*/results/result_sheet"],
"js": ["contentScript.js"]
}
],
"action": {
"default_icon": {
"16": "assets/icon_3.png",
"24": "assets/icon_3.png",
"32": "assets/icon_3.png"
},
"default_title": "UOC GPA Calculator",
"default_popup": "popup.html"
},
"manifest_version": 3
}