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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}