UMN Professor Ratings

Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder

Cos'è UMN Professor Ratings?

UMN Professor Ratings è un'estensione di Chrome sviluppata da UMNProfessorRatings, e la sua funzione principale è "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder".

Scarica il file CRX dell'estensione UMN Professor Ratings

Scarica i file di estensione UMN Professor Ratings in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        UMN Professor Ratings adds RateMyProfessor ratings directly in UMN Schedule Builder. It allows you to choose a highly rated professor while choosing courses. Displays overall ratings and difficulty ratings from reviews by students.


Professor Ratings, UMN, University of Minnesota                    

Informazioni di Base sull'Estensione

Nome UMN Professor Ratings UMN Professor Ratings
ID ndepfmgepgkncjjgkgcdhpgcopmnmpmn
URL Ufficiale https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn
Descrizione Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
Dimensione del File 12.12 KB
Conteggio Installazioni 33
Versione Corrente 2.0
Ultimo Aggiornamento 2018-07-12
Data di Pubblicazione 2018-07-12
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore UMNProfessorRatings
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UMN Professor Ratings",
    "author": "UMN Professor Ratings",
    "version": "2.0",
    "manifest_version": 2,
    "description": "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/schedulebuilder.umn.edu\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "webRequest",
        "https:\/\/schedulebuilder.umn.edu\/*",
        "https:\/\/search-a.akamaihd.net\/typeahead\/suggest\/*"
    ],
    "browser_action": {
        "default_title": "UMN Professor Ratings",
        "default_icon": "images\/icon48.png"
    }
}