basic dialog box and chart functionality

This commit is contained in:
Sriram Hariharan
2018-07-06 01:23:03 -05:00
parent b468d4f7c2
commit 7b5244e66b
4 changed files with 702 additions and 147 deletions

View File

@@ -1,23 +1,23 @@
{
"manifest_version": 2,
"name": "UT Course Extension",
"version": "0.1.0",
"description": "Chrome Extension to show more information on the UT Course catalog",
"permissions": [
"https://utdirect.utexas.edu/apps/registrar/course_schedule/*",
"*://*.ratemyprofessors.com/*"
],
"content_scripts": [{
"css": ["styles.css"],
"js": ["sql-memory-growth.js","jquery-3.3.1.min.js","content.js"],
"matches": ["https://utdirect.utexas.edu/apps/registrar/course_schedule/*"]
}],
"web_accessible_resources": [
"grades.db","disticon.png"],
"background": {
"scripts": ["background.js"],
"persistent": true
}
{
"manifest_version": 2,
"name": "UT Course Extension",
"version": "0.1.0",
"description": "Chrome Extension to show more information on the UT Course catalog",
"permissions": [
"https://utdirect.utexas.edu/apps/registrar/course_schedule/*",
"*://*.ratemyprofessors.com/*"
],
"content_scripts": [{
"css": ["styles.css"],
"js": ["sql-memory-growth.js","highcharts.js","jquery-3.3.1.min.js","content.js"],
"matches": ["https://utdirect.utexas.edu/apps/registrar/course_schedule/*"]
}],
"web_accessible_resources": [
"grades.db","disticon.png"],
"background": {
"scripts": ["background.js"],
"persistent": true
}
}