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.

O que é Rate My Gopher UMN Professor Ratings?

Rate My Gopher UMN Professor Ratings é uma extensão do Chrome desenvolvida por https://yelt3d.com, e sua principal característica é "Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Rate My Gopher UMN Professor Ratings

Baixe arquivos de extensão Rate My Gopher 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

                        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"                    

Informações Básicas da Extensão

Nome Rate My Gopher UMN Professor Ratings Rate My Gopher UMN Professor Ratings
ID pmblceckdalgamfhocahemcelikplpkg
URL Oficial https://chromewebstore.google.com/detail/rate-my-gopher-umn-profes/pmblceckdalgamfhocahemcelikplpkg
Descrição Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.
Tamanho do Arquivo 46.89 KB
Contagem de Instalações 160
Versão Atual 0.1
Última Atualização 2020-01-15
Data de Publicação 2020-01-15
Classificação 4.86/5 Total de 7 Avaliações
Desenvolvedor https://yelt3d.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://yelt3d.com/coding-projects/university-of-minnesota-rate-my-professor-chrome-extension/
Idiomas Suportados 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"
        }
    ]
}