UT Course Registration

Adds features to UT's course catalog.

什麼是UT Course Registration?

UT Course Registration是由Sidharth Kapur開發的Chrome擴展程式,該擴展的主要功能是“Adds features to UT's course catalog.”。

下載UT Course Registration擴展crx文件

下載UT Course Registration擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 UT Course Registration
ID icagkmmhiniojljnjbhpmfjpekjgeddi
官方網址 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"
}