-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.webapp
48 lines (47 loc) · 1.44 KB
/
manifest.webapp
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
45
46
47
48
{
"manifest_version": 2,
"name": "Liu++",
"description": "This extension brings new functionality to liu services",
"version": "2.0.1",
"icons": { "16": "favicon16.png",
"48": "favicon48.png",
"128": "favicon128.png" },
"browser_action": {
"default_icon": "favicon16.png",
"default_popup": "popup.html",
"default_title": "Click here!"
},
"web_accessible_resources": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"bower_components/font-awesome/fonts/*",
"templates/*.html"
],
"content_scripts": [
{
"matches": [
"https://www3.student.liu.se/portal/studieresultat/*"
],
"css": [
"css/normal.css",
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"bower_components/font-awesome/css/font-awesome.min.css",
"css/style.css"
],
"js": [
"node_modules/jquery/dist/jquery.js",
"node_modules/bootstrap/dist/js/bootstrap.js",
"node_modules/firebase/lib/firebase-web.js",
"bower_components/lodash/lodash.min.js",
"app/results/view.js",
"app/studentportalen.js",
"app/results/createReport/view.js",
"app/results/createReport/controller.js"
]
}
],
"content_security_policy": "script-src 'self' https://cdn.firebase.com https://*.firebaseio.com https://ssl.google-analytics.com; object-src 'self'",
"permissions": [
"activeTab",
"https://ajax.googleapis.com/"
]
}