Vandy Class Finder

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

Was ist Vandy Class Finder?

Vandy Class Finder ist eine Chrome-Erweiterung, die von claire-mcg entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension that adds in a class's concentration to Vanderbilt's class search tool, YES.".

Erweiterungsscreenshots

screenshot
screenshot

Vandy Class Finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Vandy Class Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Vandy Class Finder Vandy Class Finder
ID olgfidfdhjldlnkklebpmfgcgpomfinc
Offizielle URL https://chromewebstore.google.com/detail/vandy-class-finder/olgfidfdhjldlnkklebpmfgcgpomfinc
Beschreibung Chrome extension that adds in a class's concentration to Vanderbilt's class search tool, YES.
Dateigröße 456 KB
Installationsanzahl 144
Aktuelle Version 1.0
Letztes Update 2020-08-01
Veröffentlichungsdatum 2020-07-31
Entwickler claire-mcg
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}