-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmanifest.json
More file actions
35 lines (35 loc) · 998 Bytes
/
manifest.json
File metadata and controls
35 lines (35 loc) · 998 Bytes
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
{
"manifest_version": 2,
"name": "Mentor Statistics OpenClassRooms",
"version": "1.2.1",
"description": "An extension that help you to have more statistics on your incomes when you are an OpenClassRooms Mentor.",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": ["tabs"],
"content_scripts": [
{
"matches": [
"https://openclassrooms.com/fr/mentorship/dashboard/mentorship-sessions-history",
"https://openclassrooms.com/en/mentorship/dashboard/mentorship-sessions-history"
],
"js": [
"libs/jquery-3.3.1.js",
"libs/jquery.tabletojson.js",
"libs/format.js",
"src/Translation.js",
"src/LanguageUtils.js",
"src/DateUtils.js",
"config/config.js",
"src/SessionModel.js",
"src/Price.js",
"src/Statistics.js",
"src/Display.js",
"src/Parser.js",
"src/main.js"
]
}
]
}