-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
61 lines (60 loc) · 1.59 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
{
"manifest_version": 2,
"name": "Edziennik-plus",
"description": "Więcej funkcji w dzienniku elektronicznym",
"version": "0.4.0",
"icons": {"128":"icon.png"},
"author": "MS",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"web_accessible_resources": [
"wiadantyspamweb.js",
"magicznyweb.js"
],
"content_scripts": [
{
"matches": ["https://synergia.librus.pl/przegladaj_oceny/uczen"],
"js": ["oceny.js"],
"run_at": "document_start"
},
{
"matches": ["https://synergia.librus.pl/uczen/index"],
"js": ["glowna.js"],
"run_at": "document_start"
},
{
"matches": ["https://synergia.librus.pl/*"],
"js": ["banerinject.js"],
"run_at": "document_start"
},
{
"matches": ["https://synergia.librus.pl/wiadomosci", "https://synergia.librus.pl/wiadomosci/5", "https://synergia.librus.pl/wiadomosci/5/*"],
"js": ["wiadantyspam.js"],
"run_at": "document_idle"
},
{
"matches": ["https://portal.librus.pl/rodzina/synergia/loguj"],
"js": ["loginfix.js"],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"https://synergia.librus.pl/*",
"https://portal.librus.pl/*"
],
"background": {
"scripts": ["tlo.js"]
},
"applications": {
"gecko": {
"id": "edziennikplus@msx",
"update_url": "https://raw.githubusercontent.com/msxmine/edziennik-plus/updates/updates.json"
}
}
}