47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
|
|
"name": "UT Registration Plus",
|
|
"version": "0.2.0",
|
|
"options_page": "options.html",
|
|
"description": "Improves the course registration process at the University of Texas at Austin!",
|
|
"permissions": ["tabs",
|
|
"declarativeContent",
|
|
"storage",
|
|
"*://*.utdirect.utexas.edu/apps/registrar/course_schedule/*",
|
|
"*://*.catalog.utexas.edu/ribbit/"
|
|
],
|
|
"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://utdirect.utexas.edu/apps/registrar/course_schedule/*"]
|
|
}, {
|
|
"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"]
|
|
}
|
|
|
|
],
|
|
"web_accessible_resources": [
|
|
"grades.db", "images/disticon.png"
|
|
],
|
|
"background": {
|
|
"scripts": ["js/background.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"
|
|
}
|
|
} |