Vandy Scheduler

This extension organizes your potential classes and Vanderbilt YES class cart into a schedule for the upcoming semester.

Vandy Schedulerคืออะไร?

Vandy Scheduler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย qhoff และคุณลักษณะหลักของมันคือ "This extension organizes your potential classes and Vanderbilt YES class cart into a schedule for the upcoming semester."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vandy Scheduler

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

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

                        Allows you to easily choose classes that do not have conflicting times, automatically putting them into your cart. It creates all possible schedules based on the classes in your cart, and allows you to choose the schedule that best suits you. It does this by adding all available times of a certain class to the class cart when the "Add to Schedule" button is clicked. You can also choose times that you wish to have no class and choose classes in your cart that you don't want to be included in a schedule by clicking the "Preferences" button. Then, it allows you to choose the schedule that works best by clicking the "Make Schedule" button. These classes appear in the class cart. When time to enroll, you can click the "One Click Enroll" button to enroll in all classes in your cart with one click.

Vandy Scheduler now shows professor ratings from Rate My Professor next their names!

Follow on github: https://github.com/quinton22/VandyScheduler

Updates in this version:
- Update URL to match RateMyProfessors site update.
- Add the functionality of turning the professor name into a link that leads directly to their RateMyProfessors page.                    

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

ชื่อ Vandy Scheduler Vandy Scheduler
ID ofkamcklfkpakjddlappmemldnnapina
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vandy-scheduler/ofkamcklfkpakjddlappmemldnnapina
คำอธิบาย This extension organizes your potential classes and Vanderbilt YES class cart into a schedule for the upcoming semester.
ขนาดไฟล์ 72.81 KB
จำนวนการติดตั้ง 3,379
เวอร์ชันปัจจุบัน 2.0.5
อัปเดตครั้งล่าสุด 2023-06-07
วันที่เผยแพร่ 2020-03-24
คะแนน 4.50/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา qhoff
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Vandy Scheduler",
    "version": "2.0.5",
    "description": "This extension organizes your potential classes and Vanderbilt YES class cart into a schedule for the upcoming semester.",
    "icons": {
        "16": "png\/schedule-icon16.png",
        "32": "png\/schedule-icon32.png",
        "48": "png\/schedule-icon48.png",
        "64": "png\/schedule-icon64.png",
        "128": "png\/schedule-icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.vanderbilt.edu\/more\/SearchClasses*"
            ],
            "js": [
                "src\/jquery-3.2.1.min.js",
                "src\/content.js",
                "src\/class.js",
                "src\/schedule.js",
                "src\/ratemyprof.js",
                "src\/subs.js",
                "src\/restricted.js"
            ],
            "css": [
                "css\/myButton.css",
                "css\/modal.css"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*.vanderbilt.edu\/more\/SearchClasses*",
        "storage",
        "https:\/\/www.ratemyprofessors.com\/**"
    ],
    "web_accessible_resources": [
        "png\/comment-pic2.png",
        "png\/comment-pic3.png"
    ]
}