UMD Schedule of Classes Professor Rating

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

What is UMD Schedule of Classes Professor Rating?

UMD Schedule of Classes Professor Rating is a Chrome extension developed by a.mccourt60, and its main feature is "This extension will add professor ratings to each section in the UMD Schedule of Classes.".

Extension Screenshots

screenshot
screenshot

Download UMD Schedule of Classes Professor Rating Extension CRX File

Download UMD Schedule of Classes Professor Rating extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
Official URL https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
Description This extension will add professor ratings to each section in the UMD Schedule of Classes.
File Size 1.16 MB
Installation Count 41
Current Version 1.1
Last Updated 2017-12-11
Publish Date 2017-12-10
Developer a.mccourt60
Email [email protected]
Payment Type free
Extension Website https://amccourt.github.io/
Supported Languages 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"
            ]
        }
    ]
}