-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (43 loc) · 1.13 KB
/
manifest.json
File metadata and controls
44 lines (43 loc) · 1.13 KB
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": "Simplify Aeries",
"version": "1.2.5",
"description": "Simple customizable QOL CSS changes to Aeries.net Student SIS sites",
"author": "Sander Vonk",
"options_page": "html/options.html",
"permissions": ["storage", "tabs", "https://*.aeries.net/*", "https://*.aeries.com/*"],
"icons": {
"16": "icon/3DLogo.png",
"32": "icon/3DLogo.png",
"48": "icon/3DLogo.png",
"128": "icon/3DLogo.png",
"256": "icon/3DLogo.png",
"512": "icon/3DLogo.png"
},
"background": {
"scripts": ["js/background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "html/optionsUI.html"
},
"content_scripts": [
{
"css": [
"css/dashboardTweaks.css",
"css/topmenu.css",
"css/sidebarTweaks.css",
"css/loginTweaks.css",
"css/timeoutTweaks.css",
"css/testScoresTweaks.css"
],
"js": [
"js/applyoptions.js",
"js/redoIPmessage.js",
"js/enablePreview.js",
"js/getClassInfo.js"
],
"matches": ["https://*.aeries.net/*"]
}
]
}