-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (58 loc) · 1.27 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
{
"name": "ETH improvements",
"version": "1.1",
"description": "",
"permissions": [
"storage"
],
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https://www.lehrbetrieb.ethz.ch/myStudies/*",
"https://moodle-app2.let.ethz.ch/*",
"https://aai-logon.ethz.ch/idp/profile/SAML2/*",
"https://idbdfedin16.ethz.ch/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"https://video.ethz.ch/etc/*",
"https://www.lehrbetrieb.ethz.ch/myStudies/studLeistungsueberblick*"
],
"run_at": "document_end",
"js": [
"inject.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [ "video.js" ],
"matches": [ "https://*/*" ]
}
],
"action": {
"default_popup": "popup.html",
"default_title": "ETH improvements",
"default_icon": {
"16": "images/eth16.png",
"32": "images/eth32.png",
"48": "images/eth48.png",
"128": "images/eth128.png"
}
},
"icons": {
"16": "images/eth16.png",
"32": "images/eth32.png",
"48": "images/eth48.png",
"128": "images/eth128.png"
},
"manifest_version": 3
}