UT Course Registration
Adds features to UT's course catalog.
Hvad er UT Course Registration?
UT Course Registration er en Chrome-udvidelse udviklet af Sidharth Kapur, og dens hovedfunktion er "Adds features to UT's course catalog.".
Download UT Course Registration-udvidelses-CRX-fil
Download UT Course Registration-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension condenses the results from the UT Austin Registrar course listing (https://utdirect.utexas.edu/registrar/nrclav/) from multiple pages to one long scrollable page. Update v1.2.2 ------------ Fixed bug in registrar code (see https://github.com/sid-kap/ut-course-registration/commit/afcaa13e60b30602655b8ab5d97eca9a1f7582c6) Update: v1.2.1 ------------ -Fixed the registrar results concatenation feature. (It was broken for several months because UT updated their registration system.) -Added fancy dropdown to registrar listing page. Update: v1.1.1 -------------- Fixed info icon on registrar page New features: v1.1 ------------------ Makes info icons for class details on registrar site Draws bar charts on Course Instructor Survey site Options to turn on or off features.
Grundlæggende oplysninger om udvidelsen
Navn | UT Course Registration |
ID | icagkmmhiniojljnjbhpmfjpekjgeddi |
Officiel URL | https://chromewebstore.google.com/detail/ut-course-registration/icagkmmhiniojljnjbhpmfjpekjgeddi |
Beskrivelse | Adds features to UT's course catalog. |
Filstørrelse | 78.67 KB |
Antal Installationer | 67 |
Nuværende Version | 1.2.2 |
Senest Opdateret | 2017-08-29 |
Udgivelsesdato | 2017-08-29 |
Udvikler | Sidharth Kapur |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UT Course Registration", "description": "Adds features to UT's course catalog.", "version": "1.2.2", "permissions": [ "https:\/\/utdirect.utexas.edu\/registrar\/", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/utdirect.utexas.edu\/apps\/registrar\/course_schedule\/*\/results\/*" ], "js": [ "lib\/jquery-2.1.1.min.js", "lib\/select2.min.js", "registrar\/contentScript.js", "common.js" ], "css": [ "lib\/select2.min.css", "registrar\/registrar.css" ] }, { "matches": [ "https:\/\/utdirect.utexas.edu\/ctl\/ecis\/results\/view_results.WBX*" ], "css": [ "cis\/cis.css" ], "js": [ "lib\/jquery-2.1.1.min.js", "cis\/contentScript.js", "common.js" ] } ], "web_accessible_resources": [ "resources\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html" } |