-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
43 lines (42 loc) · 1.01 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
{
"name": "Refined intra Epitech",
"description": "This extension aim to upgrade the user experience on the epitech's intra",
"version": "1.0.1",
"manifest_version": 2,
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*://intra.epitech.eu/*"
],
"css": [
"addon.css"
],
"js": [
"scripts/all.js",
"scripts/script.js",
"scripts/modules.js",
"scripts/user.js",
"scripts/event.js",
"scripts/project.js",
"scripts/sidebar.js"
]
}
],
"permissions": [
"storage",
"webRequestBlocking",
"webRequest",
"cookies",
"*://intra.epitech.eu/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"icons": {
"512": "icons/epitech.png"
}
}