UMD Professor Ratings

This extension displays professor ratings next to the classes they are teaching.

Was ist UMD Professor Ratings?

UMD Professor Ratings ist eine Chrome-Erweiterung, die von Matthew Foulk entwickelt wurde, und ihr Hauptmerkmal ist "This extension displays professor ratings next to the classes they are teaching.".

Erweiterungsscreenshots

screenshot

UMD Professor Ratings-Erweiterungs-CRX-Datei herunterladen

Laden Sie UMD Professor Ratings-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

                        View professor ratings alongside their class offerings for the University of Maryland schedule of classes.                    

Grundlegende Informationen zur Erweiterung

Name UMD Professor Ratings UMD Professor Ratings
ID fgfodddkancncjeipifhldbceifkomhi
Offizielle URL https://chromewebstore.google.com/detail/umd-professor-ratings/fgfodddkancncjeipifhldbceifkomhi
Beschreibung This extension displays professor ratings next to the classes they are teaching.
Dateigröße 1.88 MB
Installationsanzahl 288
Aktuelle Version 1.0.1
Letztes Update 2023-01-12
Veröffentlichungsdatum 2020-12-12
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Matthew Foulk
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "UMD Professor Ratings",
    "description": "This extension displays professor ratings next to the classes they are teaching.",
    "version": "1.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.testudo.umd.edu\/soc\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/*"
            ],
            "matches": [
                "https:\/\/app.testudo.umd.edu\/*"
            ],
            "extension_ids": []
        }
    ],
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png"
    }
}