UMN Professor Ratings

Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder

Vad är UMN Professor Ratings?

UMN Professor Ratings är en Chrome-tillägg utvecklad av UMNProfessorRatings, och dess huvudfunktion är "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder".

Ladda ner UMN Professor Ratings-förlängningens CRX-fil

Ladda ner UMN Professor Ratings-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn UMN Professor Ratings UMN Professor Ratings
ID ndepfmgepgkncjjgkgcdhpgcopmnmpmn
Officiell webbadress https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn
Beskrivning Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
Filstorlek 12.12 KB
Antal Installationer 33
Aktuell Version 2.0
Senast Uppdaterad 2018-07-12
Publiceringsdatum 2018-07-12
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare UMNProfessorRatings
Betalningssätt free
Stödda Språk 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"
    }
}