Vandy Class Finder

Chrome extension that adds in a class's concentration to Vanderbilt's class search tool, YES.

Vandy Class Finder란 무엇입니까?

Vandy Class Finder은(는) claire-mcg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension that adds in a class's concentration to Vanderbilt's class search tool, YES."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Vandy ClassFinder aims to help Vanderbilt students easily find what requirements their classes fulfill from within the School of Engineering.  Based off of the user's major, the extension will show which requirements for that major are fulfilled by each class in the user's cart in YES, Vanderbilt's class search engine.                    

확장 프로그램 기본 정보

이름 Vandy Class Finder Vandy Class Finder
ID olgfidfdhjldlnkklebpmfgcgpomfinc
공식 URL https://chromewebstore.google.com/detail/vandy-class-finder/olgfidfdhjldlnkklebpmfgcgpomfinc
설명 Chrome extension that adds in a class's concentration to Vanderbilt's class search tool, YES.
파일 크기 456 KB
설치 횟수 144
현재 버전 1.0
최근 업데이트 2020-08-01
출시 날짜 2020-07-31
개발자 claire-mcg
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vandy Class Finder",
    "version": "1.0",
    "icons": {
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "description": "Chrome extension that adds in a class's concentration to Vanderbilt's class search tool, YES.",
    "manifest_version": 2,
    "options_page": "options.html",
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/acad.app.vanderbilt.edu\/more\/SearchClasses*",
        "http:\/\/acad.app.vanderbilt.edu\/more\/SearchClasses*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/acad.app.vanderbilt.edu\/more\/SearchClasses*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/vanderbilt.png",
        "default_title": "Vandy ClassFinder",
        "default_popup": "popup.html"
    }
}