Vandy Class Finder

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

What is Vandy Class Finder?

Vandy Class Finder is a Chrome extension developed by claire-mcg, and its main feature is "Chrome extension that adds in a class's concentration to Vanderbilt's class search tool, YES.".

Extension Screenshots

screenshot
screenshot

Download Vandy Class Finder Extension CRX File

Download Vandy Class Finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Vandy Class Finder Vandy Class Finder
ID olgfidfdhjldlnkklebpmfgcgpomfinc
Official URL https://chromewebstore.google.com/detail/vandy-class-finder/olgfidfdhjldlnkklebpmfgcgpomfinc
Description Chrome extension that adds in a class's concentration to Vanderbilt's class search tool, YES.
File Size 456 KB
Installation Count 144
Current Version 1.0
Last Updated 2020-08-01
Publish Date 2020-07-31
Developer claire-mcg
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}