QUT Timetable Planner

Plan your perfect timetable with this free open-source utility for QUT students.

QUT Timetable Plannerคืออะไร?

QUT Timetable Planner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lunar.io และคุณลักษณะหลักของมันคือ "Plan your perfect timetable with this free open-source utility for QUT students."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย QUT Timetable Planner

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

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

                        Plan your perfect timetable with this free open-source utility for QUT students.

How To Use:
1. Download and install (obviously)!

2. Use the links underneath the timetable to open either the 'enrolled units' page, or the advanced unit search. Unit searching can also be achieved by writing a unit ID or description in the 'Unit Search' box in the sidebar on the left (this is handy for units you're not currently enrolled in).

3. This extension will automatically detect the class availabilities for any subject on these pages.

4. Clicking any 'Import' button on these pages will open up the timetabler and add the class to the timetabler sidebar.

5. Click to expand any unit code in the sidebar. Hover over any class type heading (e.g. 'Tutorials'), to preview all available times for that class type.

6. Hovering over a specific class will preview that class in your current timetable. Click to add it to the timetable, or press the 'x' to the right of any selected class to remove it.

7. Finally, there's an output that shows the class times you've selected so you're ready for class registration

Open Source:
Find the source code here: https://github.com/benmag/Timetable                    

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

ชื่อ QUT Timetable Planner QUT Timetable Planner
ID iakogcgjbbfakakbpmlocfgabpdhboja
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/qut-timetable-planner/iakogcgjbbfakakbpmlocfgabpdhboja
คำอธิบาย Plan your perfect timetable with this free open-source utility for QUT students.
ขนาดไฟล์ 321 KB
จำนวนการติดตั้ง 6,619
เวอร์ชันปัจจุบัน 2.1.0
อัปเดตครั้งล่าสุด 2019-03-29
วันที่เผยแพร่ 2019-03-29
คะแนน 4.52/5 รวมทั้งหมด 75 คะแนน
ผู้พัฒนา https://lunar.io
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/benmag/Timetable
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QUT Timetable Planner",
    "version": "2.1.0",
    "description": "Plan your perfect timetable with this free open-source utility for QUT students.",
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "https:\/\/qutvirtual3.qut.edu.au\/*"
    ],
    "background": {
        "scripts": [
            "js\/launch.js"
        ]
    },
    "browser_action": {
        "default_title": "QUT Timetable Planner"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/qutvirtual3.qut.edu.au\/qv\/ttab_student_p.show",
                "https:\/\/qutvirtual3.qut.edu.au\/*\/ttab_unit_search_p.process_search*"
            ],
            "css": [
                "css\/inject.css"
            ],
            "js": [
                "lib\/jquery\/dist\/jquery.min.js",
                "lib\/crel\/crel.min.js",
                "js\/inject.js",
                "js\/extract.js"
            ]
        },
        {
            "matches": [
                "https:\/\/estudent.qut.edu.au\/T1SMSAMSPRD\/WebApps\/eStudent\/SM\/StuTtable10.aspx*"
            ],
            "css": [
                "css\/inject.css"
            ],
            "js": [
                "lib\/jquery\/dist\/jquery.min.js",
                "lib\/crel\/crel.min.js",
                "js\/estudent.js",
                "js\/extract.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/query.yahooapis.com\/; object-src 'self'",
    "manifest_version": 2,
    "minimum_chrome_version": "46"
}