-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (40 loc) · 1.22 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
39
40
41
{
"name": "Advanced Moodle",
"description": "Upgrade for the current FHWS Elearning. Added features: Mark new content, Autologin",
"version": "1.1",
"manifest_version": 3,
"permissions": [
"storage",
"tabs"
],
"action": {
"default_icon": { "19": "icons/19x19.png", "38": "icons/38x38.png" },
"default_title": "Advanced Moodle. Enhance your FHWS Elearning experience",
"default_popup": "browseraction/popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://elearning.fhws.de/course/view.php?*"],
"js": ["myscript.js"]
},
{
"matches": ["https://fhws.zoom.us/rec/play/*"],
"js": ["zoom.js"]
},
{
"matches": ["https://elearning.fhws.de/login/*"],
"js": ["login.js"]
},
{
"matches": ["https://elearning.fhws.de/"],
"js": ["index.js"]
},
{
"matches": ["https://campusportal.fhws.de/qisserver/pages/cs/sys/portal/hisinoneStartPage.faces"],
"js":["campus_portal_login.js"]
}
]
}