-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
36 lines (36 loc) · 891 Bytes
/
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
{
"name": "CheckSchoology Lite",
"version": "1.1.0",
"description": "It's back: CheckSchoology Lite brings features from your favorite PCR extension to Schoology.",
"manifest_version": 2,
"icons": {
"128": "icons/icon128.png"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [{
"js": ["content.js"],
"css": ["content.css"],
"matches": [
"*://schoology.harker.org/calendar/*",
"*://athena.harker.org/calendar/*",
"*://app.schoology.com/calendar/*"
],
"run_at": "document_start"
}],
"browser_action": {
"default_icon": {
"32": "icons/icon32.png"
}
},
"permissions": [
"storage",
"webRequest",
"*://schoology.harker.org/calendar/*",
"*://athena.harker.org/calendar/*",
"*://app.schoology.com/calendar/*"
],
"short_name": "CheckSchoology"
}