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文件

下載Vandy Class Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}