forked from QkeleQ10/Study-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
125 lines (125 loc) · 3.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"$schema": "https://json.schemastore.org/chrome-manifest",
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"version": "3.13.1",
"default_locale": "nl",
"icons": {
"16": "icons/[email protected]",
"32": "icons/[email protected]",
"48": "icons/[email protected]",
"64": "icons/[email protected]",
"128": "icons/[email protected]",
"256": "icons/[email protected]",
"300": "icons/[email protected]",
"512": "icons/[email protected]"
},
"minimum_chrome_version": "109",
"background": {
"service_worker": "src/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*://*.magister.net/*",
"*://login.microsoftonline.com/*/oauth2/authorize*"
],
"js": [
"src/scripts/api.js",
"src/scripts/util.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://*.magister.net/*"
],
"js": [
"src/scripts/style.js"
],
"css": [
"src/styles/main.css",
"src/styles/gamification.css",
"src/styles/today.css",
"src/styles/grades.css",
"src/styles/studyguide.css"
],
"run_at": "document_start"
},
{
"matches": [
"*://*.magister.net/magister/*"
],
"js": [
"src/scripts/main.js",
"src/scripts/gamification.js",
"src/scripts/today.js",
"src/scripts/grades.js",
"src/scripts/studyguide.js",
"src/scripts/books.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://accounts.magister.net/account/login*"
],
"js": [
"src/scripts/login.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://login.microsoftonline.com/*/oauth2/authorize*"
],
"js": [
"src/scripts/microsoft-login.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"src/strings/nl.json",
"src/strings/en.json",
"src/strings/fr.json",
"src/strings/de.json",
"src/strings/sv.json",
"src/strings/la.json"
],
"matches": [
"*://*.magister.net/*"
]
}
],
"action": {
"default_icon": {
"16": "icons/[email protected]",
"32": "icons/[email protected]",
"48": "icons/[email protected]",
"64": "icons/[email protected]",
"128": "icons/[email protected]",
"256": "icons/[email protected]",
"300": "icons/[email protected]",
"512": "icons/[email protected]"
},
"default_popup": "popup/dist/index.html?type=popup",
"default_title": "__MSG_appName__\nKlik om te configureren"
},
"options_page": "popup/dist/index.html?type=page",
"options_ui": {
"page": "popup/dist/index.html?type=options",
"open_in_tab": true
},
"permissions": [
"storage",
"webRequest"
],
"host_permissions": [
"*://*.magister.net/*"
]
}