UT Course Registration
Adds features to UT's course catalog.
UT Course Registration क्या है?
UT Course Registration Sidharth Kapur द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds features to UT's course catalog."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में UT Course Registration एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | UT Course Registration |
ID | icagkmmhiniojljnjbhpmfjpekjgeddi |
आधिकारिक URL | https://chromewebstore.google.com/detail/ut-course-registration/icagkmmhiniojljnjbhpmfjpekjgeddi |
विवरण | Adds features to UT's course catalog. |
फ़ाइल का आकार | 78.67 KB |
स्थापना संख्या | 67 |
वर्तमान संस्करण | 1.2.2 |
अंतिम अपडेट | 2017-08-29 |
प्रकाशन तिथि | 2017-08-29 |
डेवलपर | Sidharth Kapur |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } |