UMD Schedule of Classes Professor Rating

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

Was ist UMD Schedule of Classes Professor Rating?

UMD Schedule of Classes Professor Rating ist eine Chrome-Erweiterung, die von a.mccourt60 entwickelt wurde, und ihr Hauptmerkmal ist "This extension will add professor ratings to each section in the UMD Schedule of Classes.".

Erweiterungsscreenshots

screenshot
screenshot

UMD Schedule of Classes Professor Rating-Erweiterungs-CRX-Datei herunterladen

Laden Sie UMD Schedule of Classes Professor Rating-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
Offizielle URL https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
Beschreibung This extension will add professor ratings to each section in the UMD Schedule of Classes.
Dateigröße 1.16 MB
Installationsanzahl 41
Aktuelle Version 1.1
Letztes Update 2017-12-11
Veröffentlichungsdatum 2017-12-10
Entwickler a.mccourt60
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://amccourt.github.io/
Unterstützte Sprachen 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"
            ]
        }
    ]
}