UMD Schedule of Classes Professor Rating

This extension will add professor ratings to each section in the UMD Schedule of Classes.

O que é UMD Schedule of Classes Professor Rating?

UMD Schedule of Classes Professor Rating é uma extensão do Chrome desenvolvida por a.mccourt60, e sua principal característica é "This extension will add professor ratings to each section in the UMD Schedule of Classes.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão UMD Schedule of Classes Professor Rating

Baixe arquivos de extensão UMD Schedule of Classes Professor Rating 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

                        This extension is a personal side project to practice JQuery and Javascript.  This extension adds ratings to the UMD Schedule of Classes on Testudo for each professor.  This will allow students to choose which sections they would like to register for without having to open new browser tabs to check professor ratings.                    

Informações Básicas da Extensão

Nome UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
URL Oficial https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
Descrição This extension will add professor ratings to each section in the UMD Schedule of Classes.
Tamanho do Arquivo 1.16 MB
Contagem de Instalações 41
Versão Atual 1.1
Última Atualização 2017-12-11
Data de Publicação 2017-12-10
Desenvolvedor a.mccourt60
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://amccourt.github.io/
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UMD Schedule of Classes Professor Rating",
    "description": "This extension will add professor ratings to each section in the UMD Schedule of Classes.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "img\/testudo.png",
        "default_title": "UMD Professor Rating"
    },
    "permissions": [
        "activeTab",
        "https:\/\/search.mtvnservices.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ntst.umd.edu\/soc\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content-script.js"
            ]
        }
    ]
}