-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
37 lines (37 loc) · 996 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
{
"manifest_version": 2,
"name": "Phoenix DashBoard",
"version": "2.2",
"description": "An extension for Phoenix students on intra.42.fr. It will prevent the BlackHole box from appearing, and replace it with a counter of your monthly logtime on your profile and while looking at other Phoenix students.",
"icons": {
"88": "icons/icon.webp"
},
"permissions": [
"*://*.intra.42.fr/*"
],
"incognito": "spanning",
"content_scripts": [
{
"matches": [ "*://*.intra.42.fr/*" ],
"css": ["srcs/fonts/custom.css"],
"run_at": "document_start"
},
{
"matches": [ "*://*.intra.42.fr/*" ],
"js": ["srcs/utils/utils.js", "srcs/utils/console.js", "srcs/init.js", "srcs/logtime.js"],
"run_at": "document_start"
},
{
"matches": [ "*://*.intra.42.fr/*" ],
"js": ["srcs/pheonix.js", "srcs/blackhole.js"],
"css": ["srcs/fonts/logtime.css"],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"srcs/utils/console.js",
"srcs/pheonix.js"
]
}
}