RMP Schedule Builder Links

Get links to the ratemyprofessor pages for the professor(s) of each class!

O que é RMP Schedule Builder Links?

RMP Schedule Builder Links é uma extensão do Chrome desenvolvida por Rachit Sharma, e sua principal característica é "Get links to the ratemyprofessor pages for the professor(s) of each class!".

Capturas de Tela da Extensão

screenshot
screenshot

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

Baixe arquivos de extensão RMP Schedule Builder Links 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

                        As a sophomore at the UC Davis, I have been using schedule builder for quite some time. When recently using it for the fall quarter, I found it cumbersome to have to open a new tab and type in a professors name in order to get their ratemyprofessor scores and see the comments. While I know that extensions are available to show RMP scores directly on classes, often the best information comes from the comments. Because of this, I created an extension that automatically shows RMP links next to the professor(s) name of any class. Just click on it, and you will be lead directly to the ratemyprofessor site of the professor of the class. It is very convenient and will save you precious time!                    

Informações Básicas da Extensão

Nome RMP Schedule Builder Links RMP Schedule Builder Links
ID bkoaldjpbiffcglcdkkiccjolepciajh
URL Oficial https://chromewebstore.google.com/detail/rmp-schedule-builder-link/bkoaldjpbiffcglcdkkiccjolepciajh
Descrição Get links to the ratemyprofessor pages for the professor(s) of each class!
Tamanho do Arquivo 48.67 KB
Contagem de Instalações 26
Versão Atual 0.1
Última Atualização 2021-09-14
Data de Publicação 2021-09-14
Desenvolvedor Rachit Sharma
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/RachitSharma2001/AllPossibleSchedules
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RMP Schedule Builder Links",
    "description": "Get links to the ratemyprofessor pages for the professor(s) of each class!",
    "version": "0.1",
    "icons": {
        "16": "Icon_16.png",
        "48": "Icon_48.png",
        "128": "Icon_128.png"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/my.ucdavis.edu\/schedulebuilder\/index.cfm*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "test_file.txt"
            ],
            "matches": [
                ""
            ]
        }
    ]
}