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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย claire-mcg และคุณลักษณะหลักของมันคือ "Chrome extension that adds in a class's concentration to Vanderbilt's class search tool, YES."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vandy Class Finder

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}