UMN Professor Ratings
Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
What is UMN Professor Ratings?
UMN Professor Ratings is a Chrome extension developed by UMNProfessorRatings, and its main feature is "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder".
Download UMN Professor Ratings Extension CRX File
Download UMN Professor Ratings 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
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
Extension Basic Information
Name | |
ID | ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
Official URL | https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
Description | Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder |
File Size | 12.12 KB |
Installation Count | 33 |
Current Version | 2.0 |
Last Updated | 2018-07-12 |
Publish Date | 2018-07-12 |
Rating | 5.00/5 Total 4 Ratings |
Developer | UMNProfessorRatings |
Payment Type | free |
Supported Languages | 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" } } |