Vandy Scheduler

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

Vandy Scheduler란 무엇입니까?

Vandy Scheduler은(는) qhoff에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension organizes your potential classes and Vanderbilt YES class cart into a schedule for the upcoming semester."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Vandy Scheduler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    ]
}