-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
38 lines (38 loc) · 1.01 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
38
{
"manifest_version": 2,
"name": "FOSS Lectio improvements",
"version": "1.5",
"description": "A free and open source browser extension for Lectio with QoL features.",
"icons": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"64": "assets/icons/icon64.png",
"128": "assets/icons/icon128.png"
},
"content_scripts": [
{
"matches": ["*://*.lectio.dk/*"],
"js": ["src/lib/settings.js", "src/colors.js", "src/misc.js", "src/headhider.js"]
},
{
"matches": ["*://*.lectio.dk/*/SkemaNy.aspx*"],
"js": ["src/schedule.js"]
},
{
"matches": ["*://*.lectio.dk/*/OpgaverElev.aspx*"],
"js": ["src/assignment.js"]
},
{
"matches": ["*://*.lectio.dk/*/AdgangIndstillinger.aspx*"],
"js": ["src/settings.js"]
},
{
"matches": ["*://*.lectio.dk/*/grade_report.aspx*"],
"js": ["src/grades.js"]
},
{
"matches": ["*://*.lectio.dk/*/beskeder2.aspx*"],
"js": ["src/messagePictures.js"]
}
]
}