-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (35 loc) · 888 Bytes
/
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": "Betygssnittet",
"version": "1.0",
"description": "Räknar ut ditt betygssnitt automatiskt i Ladok",
"author": "Isak Engström",
"manifest_version": 2,
"icons": {
"16": "img/logo/icon-16.png",
"32": "img/logo/icon-32.png",
"48": "img/logo/icon-48.png",
"48": "img/logo/icon-64.png",
"128": "img/logo/icon-128.png"
},
"background": {
"scripts": [
"jquery-3.5.1.min.js", "popup.js"
],
"persistent": false
},
"content_scripts": [ {
"matches": [ "https://www.student.ladok.se/student/*"],
"js": ["jquery-3.5.1.min.js", "content.js"]
}],
"browser_action": {
"default_title": "Betygssnittet",
"default_icon": {
"16": "img/logo/icon-16.png"
},
"default_popup": "popup.html"
},
"permissions": [
"activeTab"
],
"content_security_policy":"script-src 'self'; object-src 'self'"
}