UMN Professor Ratings
Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
O que é UMN Professor Ratings?
UMN Professor Ratings é uma extensão do Chrome desenvolvida por UMNProfessorRatings, e sua principal característica é "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder".
Baixar o arquivo CRX da Extensão UMN Professor Ratings
Baixe arquivos de extensão UMN Professor Ratings no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
URL Oficial | https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
Descrição | Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder |
Tamanho do Arquivo | 12.12 KB |
Contagem de Instalações | 33 |
Versão Atual | 2.0 |
Última Atualização | 2018-07-12 |
Data de Publicação | 2018-07-12 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | UMNProfessorRatings |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |