UMN Professor Ratings

Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder

Wat is UMN Professor Ratings?

UMN Professor Ratings is een Chrome-extensie ontwikkeld door UMNProfessorRatings, en de belangrijkste functie is "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder".

Download het CRX-bestand van de extensie UMN Professor Ratings

Download UMN Professor Ratings-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam UMN Professor Ratings UMN Professor Ratings
ID ndepfmgepgkncjjgkgcdhpgcopmnmpmn
Officiële URL https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn
Beschrijving Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
Bestandsgrootte 12.12 KB
Aantal Installaties 33
Huidige Versie 2.0
Laatst Bijgewerkt 2018-07-12
Publicatiedatum 2018-07-12
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar UMNProfessorRatings
Betalingswijze free
Ondersteunde Talen 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"
    }
}