UMD Schedule of Classes Professor Rating

This extension will add professor ratings to each section in the UMD Schedule of Classes.

ما هو UMD Schedule of Classes Professor Rating؟

UMD Schedule of Classes Professor Rating هو إضافة Chrome تم تطويرها بواسطة a.mccourt60، والميزة الرئيسية لها هي "This extension will add professor ratings to each section in the UMD Schedule of Classes.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة UMD Schedule of Classes Professor Rating

قم بتنزيل ملفات الامتداد UMD Schedule of Classes Professor Rating بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This extension is a personal side project to practice JQuery and Javascript.  This extension adds ratings to the UMD Schedule of Classes on Testudo for each professor.  This will allow students to choose which sections they would like to register for without having to open new browser tabs to check professor ratings.                    

معلومات أساسية عن التمديد

الاسم UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
عنوان URL الرسمي https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
الوصف This extension will add professor ratings to each section in the UMD Schedule of Classes.
حجم الملف 1.16 MB
عدد التثبيتات 41
النسخة الحالية 1.1
آخر تحديث 2017-12-11
تاريخ النشر 2017-12-10
المطور a.mccourt60
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://amccourt.github.io/
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UMD Schedule of Classes Professor Rating",
    "description": "This extension will add professor ratings to each section in the UMD Schedule of Classes.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "img\/testudo.png",
        "default_title": "UMD Professor Rating"
    },
    "permissions": [
        "activeTab",
        "https:\/\/search.mtvnservices.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ntst.umd.edu\/soc\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content-script.js"
            ]
        }
    ]
}