RateMyGWU

Displays Rate My Professors information directly on the GW schedule of classes

O que é RateMyGWU?

RateMyGWU é uma extensão do Chrome desenvolvida por Jamie Scott, e sua principal característica é "Displays Rate My Professors information directly on the GW schedule of classes".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão RateMyGWU

Baixe arquivos de extensão RateMyGWU 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

                        Makes the lives of GW students easier by displaying Rate My Professor data directly on the GW schedule of classes.
Simply hover over a professors name to see information such as their overall rating and their level of difficulty!
You may also click on the professors name to be linked directly to their Rate My Professor page.                    

Informações Básicas da Extensão

Nome RateMyGWU RateMyGWU
ID cpbecdacgjgpnpehjgkhddiancbonija
URL Oficial https://chromewebstore.google.com/detail/ratemygwu/cpbecdacgjgpnpehjgkhddiancbonija
Descrição Displays Rate My Professors information directly on the GW schedule of classes
Tamanho do Arquivo 408 KB
Contagem de Instalações 85
Versão Atual 1.0
Última Atualização 2020-08-17
Data de Publicação 2020-08-17
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Jamie Scott
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/JamieScottC/RateMyGWU
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RateMyGWU",
    "version": "1.0",
    "description": "Displays Rate My Professors information directly on the GW schedule of classes",
    "permissions": [
        "*:\/\/www.ratemyprofessors.com\/*",
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/"
    ],
    "web_accessible_resources": [
        "css\/rate.css",
        "fonts\/Manrope\/Manrope-VariableFont_wght.ttf"
    ],
    "background": {
        "scripts": [
            "\/js\/jquery-3.5.1.min.js",
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.gwu.edu\/mod\/pws\/courses.cfm?campId=*&termId=*&subjId=*"
            ],
            "js": [
                "\/js\/jquery-3.5.1.min.js",
                "\/js\/injectRate.js"
            ],
            "css": [
                "\/css\/rate.css"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/RateMyGWULogo16.png",
            "32": "images\/RateMyGWULogo32.png",
            "48": "images\/RateMyGWULogo48.png",
            "128": "images\/RateMyGWULogo128.png"
        }
    },
    "icons": {
        "16": "images\/RateMyGWULogo16.png",
        "32": "images\/RateMyGWULogo32.png",
        "48": "images\/RateMyGWULogo48.png",
        "128": "images\/RateMyGWULogo128.png"
    },
    "manifest_version": 2
}