-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·50 lines (49 loc) · 1.81 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
48
49
50
{
"manifest_version": 2,
"name": "BTHO TAMU Registration",
"version": "0.2.2.2",
"options_page": "options.html",
"description": "Improves the course registration process at the Texas A&M University!",
"permissions": ["tabs",
"declarativeContent",
"storage",
"*://*.tamu.edu/uPortal/*",
"*://*.catalog.utexas.edu/ribbit/",
"*://*.registrar.utexas.edu/schedules/*",
"*://*.login.utexas.edu/login/*",
"*://*.cas.tamu.edu/cas/login/*",
"*://*.utdirect.utexas.edu/*",
"*://*.compass-ssb.tamu.edu/*"
],
"content_scripts": [{
"css": ["css/styles.css"],
"js": ["js/moment.min.js", "js/sql-memory-growth.js", "js/highcharts.js", "js/jquery-3.3.1.min.js", "js/content.js"],
"matches": ["https://howdy.tamu.edu/uPortal/*", "https://compass-ssb.tamu.edu/*", "https://utdirect.utexas.edu/*"]
}, {
"css": ["css/styles.css"],
"js": ["js/moment.min.js", "js/sql-memory-growth.js", "js/highcharts.js", "js/jquery-3.3.1.min.js", "js/import.js"],
"matches": ["https://utdirect.utexas.edu/registrar/waitlist/wl_see_my_waitlists.WBX", "https://utdirect.utexas.edu/registration/classlist.WBX*"]
}],
"web_accessible_resources": [
"grades.db", "images/disticon.png", "tamu_grades.db", "images/reveille.png", "images/rmp.png", "icons/icon128.png"
],
"background": {
"scripts": ["js/background.js", "js/moment.min.js", "js/jquery-3.3.1.min.js"],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}