UT Schedule Maker

This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click.

什麼是UT Schedule Maker?

UT Schedule Maker是由Nathan Orick開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click.”。

下載UT Schedule Maker擴展crx文件

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

擴展使用說明

                        Every semester, its the same old headache. UT gives you a schedule that you can view online or download as a pdf. But a schedule in that format is just about as useful as a knife with no blade. So every time I get a new schedule, I spend 15 minutes adding each class, one-by-one, as an event to my calendar.

This extension solves that problem! All you have to do is:
1. Install the extension.
2. Go to https://my.utk.edu and choose the schedule you'd like to download.
3. Click the UT Schedule Maker icon that should now appear next to your URL.
4. Get on with your life.

For more detailed instructions, see https://github.com/cnorick/UTK-Schedule-Maker                    

擴展基本資訊

名稱 UT Schedule Maker UT Schedule Maker
ID gfeghgchfgphpeemgblkgbjmmnbkeemk
官方網址 https://chromewebstore.google.com/detail/ut-schedule-maker/gfeghgchfgphpeemgblkgbjmmnbkeemk
簡介 This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click.
檔案大小 44.48 KB
安裝次數 25
目前版本 1.0
更新時間 2016-12-24
上架時間 2016-12-21
開發者 Nathan Orick
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/cnorick/UTK-Schedule-Maker
說明頁面URL https://github.com/cnorick/UTK-Schedule-Maker
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UT Schedule Maker",
    "description": "This extension allows you to transform your UT schedule (available at https:\/\/my.utk.edu) into a downloadable calendar in one click.",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js",
            "moment.js",
            "ics.js",
            "helpers.js",
            "termDates.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "icon.png"
    },
    "author": "Nathan Orick ([email protected])",
    "page_action": {
        "default_title": "UT Schedule Maker"
    },
    "permissions": [
        "declarativeContent",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.utk.edu\/*",
                "https:\/\/myutk.utk.edu\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/cnorick\/UTK-Schedule-Maker"
}