-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
49 lines (49 loc) · 1.08 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
{
"name": "LibrusPro - rozszerzenie do Librusa",
"version": "4.0.2",
"description": "Ulepsz Librusa już dziś! Ciemny motyw, liczenie średnich, procentowej frekwencji oraz własny terminarz.",
"manifest_version": 3,
"author": "Maks Kowalski",
"short_name": "LibrusPro",
"permissions": [ "storage", "scripting" ],
"host_permissions": [
"https://synergia.librus.pl/*",
"https://portal.librus.pl/*"
],
"icons": {
"512": "img/icon.png"
},
"action": {
"default_icon": "img/icon.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [ "https://synergia.librus.pl/*" ],
"js": [ "librusPro.js" ],
"all_frames": true
},
{
"matches": [ "https://synergia.librus.pl/*" ],
"css": [ "librusPro.css" ],
"run_at": "document_start"
},
{
"matches": [ "https://portal.librus.pl/*" ],
"js": [ "portal.js" ]
}
],
"web_accessible_resources": [
{
"resources": [ "img/*" ],
"matches": [ "<all_urls>" ]
},
{
"resources": [ "librus.js" ],
"matches": [ "<all_urls>" ]
}
]
}