forked from sas-fossdev/saspes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
31 lines (31 loc) · 852 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
{
"name": "SAS Powerschool Enhancement Suite",
"description": "Provides various enhancements for SAS Powerschool",
"version": "1.0.0.0",
"version_name": "1.0.0-alpha",
"manifest_version": 3,
"action": {
"default_popup": "src/popup/index.html"
},
"content_scripts": [
{
"matches": ["https://powerschool.sas.edu.sg/guardian/scores.html*"],
"js": ["src/content_script/scores/index.ts"]
},
{
"matches": ["https://powerschool.sas.edu.sg/*"],
"js": ["src/content_script/def/index.ts"]
},
{
"matches": ["https://powerschool.sas.edu.sg/public/home.html"],
"js": ["src/content_script/home/index.ts"]
}
],
"permissions": ["storage"],
"web_accessible_resources": [
{
"matches": ["https://powerschool.sas.edu.sg/*"],
"resources": ["public/icon.png"]
}
]
}