-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·30 lines (30 loc) · 1.09 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
{
"name": "School Loop Easy Loop",
"short_name": "Easy Loop",
"version": "3.1.3",
"description": "An extension that enhances the schoolloop interface to allow easy grade calculation",
"manifest_version": 2,
"permissions": [
"activeTab"
],
"icons": {
"16": "images/easyloop-icon16.png",
"48": "images/easyloop-icon48.png",
"128": "images/easyloop-icon128.png"
},
"web_accessible_resources": ["images/easyloop-logo.png"],
"browser_action": {
"name": "Make grade calculation easier!",
"default_icon": "images/easyloop-logo.png",
"default_popup": "website/index.html"
},
"content_scripts": [{
"js": ["jquery-3.3.1.min.js", "bootstrap/js/bootstrap.min.js", "user.js", "background.js"],
"css": ["bootstrap/css/bootstrap.min.css"],
"matches": ["https://*.schoolloop.com/progress_report/*"]
}, {
"matches": ["https://*.schoolloop.com/*"],
"css": ["bootstrap/css/bootstrap.min.css", "animate.css", "sweetalert2.min.css"],
"js": ["jquery-3.3.1.min.js", "sweetalert2.min.js", "bootstrap/js/bootstrap.min.js", "init.js", "theme_generator.js"]
}]
}