-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
47 lines (47 loc) · 1.34 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
45
46
47
{
"name": "Harker Hackers Schoology Extension",
"version": "1.1.3",
"description": "Schoology Schedule",
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*://*.schoology.harker.org/*/",
"*://*.schoology.com/*",
"https://harkerca.infinitecampus.org/*/",
"https://www.harker.org/*/",
"https://saml.finalsite.com/*/",
"*://resources.harker.org/download/*"
],
"content_scripts": [
{
"matches": ["https://schoology.harker.org/grades/*"],
"js": ["chart.js"]
},
{
"matches": ["https://schoology.harker.org/*"],
"js": ["jQuery.js", "main.js"]
},
{
"matches": ["https://schoology.harker.org/course/*/materials/gp/*"],
"js": ["pdfview.js"]
},
{
"matches": ["https://schoology.harker.org/lunch"],
"js": ["lunch.js"]
},
{
"matches": ["https://schoology.harker.org/schedule"],
"js": ["schedule.js"]
}
],
"background": {
"persistent": true,
"scripts": ["background.js", "pdfHeaderRemover.js"]
},
"browser_action": {
"default_popup": "popup/index.html",
"default_icon": "images/harker.png"
},
"manifest_version": 2
}