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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nathan Orick และคุณลักษณะหลักของมันคือ "This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UT Schedule Maker

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
}