-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
40 lines (40 loc) · 1.02 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
{
"name": "Lectio Master",
"description": "Lectio men bedre",
"manifest_version": 2,
"version": "0.7.2",
"browser_action": {
"default_popup": "popup/popup.html"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"web_accessible_resources": [
"images/lectio_logo.png",
"css/*"
],
"content_scripts": [
{
"matches": ["https://*.lectio.dk/*"],
"js": [
"js/util.js",
"js/alle.js",
"js/opgaver.js",
"js/skema.js",
"js/karakter.js",
"js/forside.js",
"js/skolevalg.js",
"js/login.js",
"js/beskeder.js",
"js/ledige.js",
"js/indstillinger.js",
"inject.js"
],
"css": ["css/alle.css"],
"all_frames": true,
"run_at": "document_start"
}
],
"permissions": ["storage"]
}