-
Notifications
You must be signed in to change notification settings - Fork 13
/
manifest.json
44 lines (44 loc) · 1.02 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
{
"manifest_version": 2,
"name": "MoodleBooster",
"version": "1.1",
"description": "Boosts moodle UI/UX",
"icons": {
"48": "images/moodlebooster_icon.png"
},
"content_scripts": [
{
"matches": [
"*://*.moodle2.cs.huji.ac.il/*"
],
"js": [
"/webextension-polyfill/dist/browser-polyfill.js",
"/content_scripts/contentScriptsEnabler.js",
"/content_scripts/dashboard.js",
"/content_scripts/storageLoader.js",
"/content_scripts/courseScheduale.js",
"/content_scripts/courseReverseOrder.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"/webextension-polyfill/dist/browser-polyfill.js",
"popup/popup.js"
]
},
"permissions": [
"*://*.huji.ac.il/*",
"activeTab",
"tabs"
],
"browser_action": {
"default_icon": {
"38": "images/moodlebooster_icon.png"
},
"default_title": "MoodleBooster",
"default_popup": "popup/index.html",
"browser_style": true
}
}