-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json.old
42 lines (42 loc) · 1.14 KB
/
manifest.json.old
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
{
"manifest_version": 2,
"name": "SAS Powerschool Enhancement Suite",
"short_name": "SAS PES",
"version": "SET_DURING_BUILD",
"author": "Gary Kim & The SAS PES Authors",
"homepage_url":"https://github.com/gary-kim/saspes/",
"description": "Provides various enhancements for SAS Powerschool",
"permissions": [
"storage",
"clipboardWrite"
],
"applications": {
"gecko": {
"id": "[email protected]",
"update_url": "https://updates.garykim.dev/firefox/saspowerschoolff/updates.json"
}
},
"icons": {
"128": "icons/128.png"
},
"options_ui": {
"page": "ui/options.html",
"browser_style": true
},
"web_accessible_resources": [
"/ui/historygrades.*",
"/icons/*",
"/web_accessible_resources/"
],
"background": {
"scripts": ["js/background.js"]
},
"content_scripts": [
{
"matches": ["https://powerschool.sas.edu.sg/*"],
"js": ["js/saspowerschoolff.js"],
"css": ["css/spse.css"],
"run_at": "document_end"
}
]
}