Files
UT-Registration-Plus/manifest.json
2018-06-30 18:48:37 -05:00

17 lines
409 B
JSON

{
"manifest_version": 2,
"name": "UT Course Extension",
"version": "0.1.0",
"description": "Chrome Extension to show more information on the UT Course catalog",
"content_scripts": [{
"css": ["styles.css"],
"js": ["content.js"],
"matches": ["https://utdirect.utexas.edu/apps/registrar/course_schedule/*"]
}],
"background": {
"scripts": ["content.js"],
"persistent": false
}
}