-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
46 lines (45 loc) · 1.02 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
{
"name": "IvoryTower Checker",
"short_name": "IT Check",
"author": "Cody Jung, Eric Clymer, Andrew Herold",
"version": "1.5.0",
"description": "Checks IvoryTower for unread threads, adds misc other functionality.",
"icons": {
"48": "/assets/icon48.png",
"128": "/assets/icon128.png"
},
"browser_action": {
"default_icon": "/assets/icon.png",
"default_title": "No unread threads",
"default_popup": "/popup/popup.html"
},
"permissions": [
"alarms",
"webNavigation",
"https://www.ivorytower.com/",
"storage"
],
"options_page": "/options/options.html",
"background": {
"scripts": [
"/lib/jquery-2.1.3.min.js",
"/scripts/core.js",
"/background.js"
],
"persistent": false
},
"content_scripts": [{
"matches": ["https://*.ivorytower.com/*"],
"js": [
"/lib/jquery-2.1.3.min.js",
"/scripts/core.js",
"/scripts/cohort-year-adder.js",
"/scripts/emoticon-adder.js",
"/scripts/shortcuts.js"
]
}],
"web_accessible_resources": [
"/options/options.html"
],
"manifest_version": 2
}