-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
60 lines (60 loc) · 1.79 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
{
"name": "Lectio ElevPicker",
"version": "2.0.0",
"description": "Du som lærer kan finde en tilfældig elev ud fra en klasse eller danne arbejdsgrupper og matrix grupper.",
"permissions": ["storage"],
"content_scripts": [
{
"matches": [
"https://www.lectio.dk/lectio/*/subnav/members.aspx?klasseid=*&showstudents=*"
],
"js": [
"content-scripts/on-page-ui.js",
"content-scripts/random.js",
"content-scripts/buttons.js",
"content-scripts/groups.js"
],
"css": [
"css/pageBtn.css"
]
},
{
"matches": [
"https://www.lectio.dk/*"
],
"js": [
"content-scripts/lectioNav.js"
],
"css": [
"css/lectioNav.css"
]
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "Lectio ElevPicker (Klik for mere)",
"default_icon": {
"16": "images/icon16_v2.png",
"32": "images/icon32_v2.png",
"48": "images/icon48_v2.png",
"64": "images/icon64_v2.png",
"128": "images/icon128_v2.png",
"256": "images/icon256_v2.png",
"512": "images/icon512_v2.png"
}
},
"icons": {
"16": "images/icon16_v2.png",
"32": "images/icon32_v2.png",
"48": "images/icon48_v2.png",
"64": "images/icon64_v2.png",
"128": "images/icon128_v2.png",
"256": "images/icon256_v2.png",
"512": "images/icon512_v2.png"
},
"manifest_version": 2
}