NJIT Schedule Builder RMP

An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.

O que é NJIT Schedule Builder RMP?

NJIT Schedule Builder RMP é uma extensão do Chrome desenvolvida por vineethedev, e sua principal característica é "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão NJIT Schedule Builder RMP

Baixe arquivos de extensão NJIT Schedule Builder RMP 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 allows students to quickly view ratemyprofessor.com information on the NJIT Schedule Builder (https://uisapppr3.njit.edu/scbldr/). 

You can view the source code at https://github.com/Vineetsridhar/RMPExtension                    

Informações Básicas da Extensão

Nome NJIT Schedule Builder RMP NJIT Schedule Builder RMP
ID gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
URL Oficial https://chromewebstore.google.com/detail/njit-schedule-builder-rmp/gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
Descrição An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.
Tamanho do Arquivo 32.51 KB
Contagem de Instalações 1,263
Versão Atual 1.5
Última Atualização 2022-12-23
Data de Publicação 2020-09-01
Classificação 5.00/5 Total de 9 Avaliações
Desenvolvedor vineethedev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://uisapppr3.njit.edu/scbldr/
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NJIT Schedule Builder RMP",
    "version": "1.5",
    "description": "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.",
    "icons": {
        "16": "Icons\/icon16.png",
        "32": "Icons\/icon32.png",
        "48": "Icons\/icon48.png",
        "64": "Icons\/icon64.png",
        "100": "Icons\/icon100.png",
        "128": "Icons\/icon128.png",
        "200": "Icons\/icon200.png"
    },
    "manifest_version": 2,
    "permissions": [
        "https:\/\/uisapppr3.njit.edu\/scbldr\/+"
    ],
    "browser_action": {
        "default_icon": "Icons\/icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/uisapppr3.njit.edu\/scbldr\/"
            ],
            "run_at": "document_end"
        }
    ]
}