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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Vandy Class Finder
قم بتنزيل ملفات الامتداد Vandy Class Finder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } |