UMN Professor Ratings
Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
Was ist UMN Professor Ratings?
UMN Professor Ratings ist eine Chrome-Erweiterung, die von UMNProfessorRatings entwickelt wurde, und ihr Hauptmerkmal ist "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder".
UMN Professor Ratings-Erweiterungs-CRX-Datei herunterladen
Laden Sie UMN 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
UMN Professor Ratings adds RateMyProfessor ratings directly in UMN Schedule Builder. It allows you to choose a highly rated professor while choosing courses. Displays overall ratings and difficulty ratings from reviews by students. Professor Ratings, UMN, University of Minnesota
Grundlegende Informationen zur Erweiterung
Name | |
ID | ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
Offizielle URL | https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
Beschreibung | Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder |
Dateigröße | 12.12 KB |
Installationsanzahl | 33 |
Aktuelle Version | 2.0 |
Letztes Update | 2018-07-12 |
Veröffentlichungsdatum | 2018-07-12 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | UMNProfessorRatings |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UMN Professor Ratings", "author": "UMN Professor Ratings", "version": "2.0", "manifest_version": 2, "description": "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/schedulebuilder.umn.edu\/*" ], "js": [ "main.js" ], "css": [ "styles.css" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "webRequest", "https:\/\/schedulebuilder.umn.edu\/*", "https:\/\/search-a.akamaihd.net\/typeahead\/suggest\/*" ], "browser_action": { "default_title": "UMN Professor Ratings", "default_icon": "images\/icon48.png" } } |