Rate My Gopher UMN Professor Ratings
Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.
Qu'est-ce que Rate My Gopher UMN Professor Ratings ?
Rate My Gopher UMN Professor Ratings est une extension Chrome développée par https://yelt3d.com, et sa fonction principale est "Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Rate My Gopher UMN Professor Ratings
Téléchargez les fichiers d'extension Rate My Gopher UMN Professor Ratings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
See Rate My Professors ratings alongside a professor's name when searching for UMN courses. When searching for courses on UMN's schedule builder, RMP's overall score, difficulty score, and review tags will be shown on the righthand side of the screen for each instructor teaching the course. Clicking on the professor's name will open a link to the RMP website with detailed responses and reviews. 1. Load up the University of Minnesota schedule builder. 2. Click the "Search Professors Button"
Informations de Base sur l'Extension
Nom | |
ID | pmblceckdalgamfhocahemcelikplpkg |
URL Officiel | https://chromewebstore.google.com/detail/rate-my-gopher-umn-profes/pmblceckdalgamfhocahemcelikplpkg |
Description | Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC. |
Taille du Fichier | 46.89 KB |
Nombre d'Installations | 160 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2020-01-15 |
Date de Publication | 2020-01-15 |
Évaluation | 4.86/5 Total 7 Évaluations |
Développeur | https://yelt3d.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://yelt3d.com/coding-projects/university-of-minnesota-rate-my-professor-chrome-extension/ |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Rate My Gopher UMN Professor Ratings", "version": "0.1", "description": "Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.", "browser_action": { "default_icon": { "16": "icon16.png", "32": "icon32.png" }, "default_popup": "popup.html", "default_title": "Check here to see Rate My Goper instructions and developer credits." }, "permissions": [ "https:\/\/solr-aws-elb-production.ratemyprofessors.com\/*" ], "icons": { "128": "icon128.png", "32": "icon32.png", "48": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/schedulebuilder.umn.edu\/*" ], "js": [ "jquery-3.4.1.min.js", "content.js" ], "run_at": "document_end" } ] } |