RateMyTracks

Get clear insights into professors at the University of Alberta while browsing Beartracks.

O que é RateMyTracks?

RateMyTracks é uma extensão do Chrome desenvolvida por RateMyTracks, e sua principal característica é "Get clear insights into professors at the University of Alberta while browsing Beartracks.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão RateMyTracks

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

                        RateMyTracks helps you find the best classes to take when building a schedule on BearTracks. 

It does this by displaying ratings and linking reviews from Rate My Professors within Beartracks, no other setup required.

Features:
- Shows the Rate My Professors rating next to each professor's name
- Each professor's name becomes a link to their reviews
- Button to control when the extension is on
- Seamlessly integrated into Beartracks, just install and go
- 100% free no payment required

RateMyTracks is not endorsed or sponsored by the University of Alberta or Rate My Professors.

Developed in Edmonton by Youssef Ismail, Rupin Bapuji, Bennett Wiredu, and Kourosh Kehtari.                    

Informações Básicas da Extensão

Nome RateMyTracks RateMyTracks
ID fejbmlpffkoiinhibcojnjldfhedomfe
URL Oficial https://chromewebstore.google.com/detail/ratemytracks/fejbmlpffkoiinhibcojnjldfhedomfe
Descrição Get clear insights into professors at the University of Alberta while browsing Beartracks.
Tamanho do Arquivo 105 KB
Contagem de Instalações 249
Versão Atual 1.1.1
Última Atualização 2021-07-23
Data de Publicação 2021-07-21
Desenvolvedor RateMyTracks
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://forms.gle/fFzfrTCQYAqk18zS9
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RateMyTracks",
    "description": "Get clear insights into professors at the University of Alberta while browsing Beartracks.",
    "version": "1.1.1",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.beartracks.ualberta.ca\/*"
            ],
            "run_at": "document_end",
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "profData.json"
            ],
            "matches": [
                "https:\/\/www.beartracks.ualberta.ca\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}