-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
86 lines (86 loc) · 2.15 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "tU-Cursos",
"version": "1.1.0",
"manifest_version": 3,
"permissions": [
"storage",
"webNavigation"
],
"content_scripts": [
{
"matches": [
"*://*.u-cursos.cl/*"
],
"js": [
"js/integrantes-viewer.js",
"js/element-hider.js"
],
"css": [
"css/tu-cursos.css"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.u-cursos.cl/*"
],
"js": [
"js/element-hider.js",
"js/element-resizer.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://*.u-cursos.cl/*/*/*/*/*/integrantes/"
],
"js": [
"js/integrantes-counter.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.u-cursos.cl/ingenieria/2/foro_institucion/*",
"*://www.u-cursos.cl/ingenieria/*/*/*/*/foro/*",
"*://www.u-cursos.cl/uchile/4/foro_institucion/",
"*://www.u-cursos.cl/uchile/*/0/*/1/foro/"
],
"js": [
"js/read-more.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.u-cursos.cl/ingenieria/*/*/*/*notas/*"
],
"js": [
"js/grade-comments.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://*.u-cursos.cl/usuario/*/horario/*"
],
"js": [
"js/week-counter.js",
"js/ical.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "js/background-settings.js"
},
"action": {
"default_popup": "html/menu.html",
"default_title": "tU-Cursos"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}