Unimelb Timetable to iCal

Converts the Unimelb timetable page into an iCal file

Unimelb Timetable to iCalคืออะไร?

Unimelb Timetable to iCal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย stewart.james.webb และคุณลักษณะหลักของมันคือ "Converts the Unimelb timetable page into an iCal file"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unimelb Timetable to iCal

ดาวน์โหลดไฟล์ส่วนขยาย Unimelb Timetable to iCal ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        [Update - August 2019]
v1.2.0 has just been released which updates the semester break date to work properly for semester 2 2019 (see version history below for more info).

Chrome Extension that converts the University of Melbourne student timetable page into an iCalendar/.ics file, which you can then import into iCloud/Google Calendar/Outlook Calendar or any other calendar program that supports the iCal file format.

To use it: just go to the Student Portal and navigate to your timetable. A small icon will pop up in the toolbar - click that and you can probably work out the rest :)

Features:
* (NEW!) Fetches semester start/end dates automagically from the Unimelb academic calendar
* Scrapes all timetable data (subject code+name, times, location)
* Repeats timetable for duration of semester
* Excludes repeats from the mid-semester break
* Ability to include week-long events that are labelled with the University week # (plus one for the mid-semester break)

Please report any bugs on my GitHub repo: https://github.com/nuclearpidgeon/UoM-Timetable-to-iCal

Version history:
* v1.2.0 (August 2019) - update the semester break date for semester 1 2019, and add an automatic semester selection (based on which one starts closest to the current date)
* v1.1.5 (February 2018) - update the semester break date for semester 1 2018
* v1.1.4 (August 2017) - fix date fetching issues with the new Unimelb calendar page (worst 'API' ever!)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Unimelb Timetable to iCal Unimelb Timetable to iCal
ID fjebhipnmjbnhfhcpoajoaembenmnllm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/unimelb-timetable-to-ical/fjebhipnmjbnhfhcpoajoaembenmnllm
คำอธิบาย Converts the Unimelb timetable page into an iCal file
ขนาดไฟล์ 82.53 KB
จำนวนการติดตั้ง 622
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2019-08-01
วันที่เผยแพร่ 2019-08-01
คะแนน 4.95/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา stewart.james.webb
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/nuclearpidgeon/UoM-Timetable-to-iCal
URL หน้าช่วยเหลือ https://github.com/nuclearpidgeon/UoM-Timetable-to-iCal/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unimelb Timetable to iCal",
    "version": "1.2.0",
    "description": "Converts the Unimelb timetable page into an iCal file",
    "icons": {
        "128": "icon-128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-76.png"
        },
        "default_title": "UoM Timetable detected",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "tabs",
        "https:\/\/prod.ss.unimelb.edu.au\/*",
        "http:\/\/www.unimelb.edu.au\/dates",
        "https:\/\/www.unimelb.edu.au\/dates",
        "file:\/\/*\/UoM-Timetable-to-iCal\/extension\/test\/*"
    ],
    "web_accessible_resources": [
        "contentscript.js"
    ]
}