UMN Professor Ratings

Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder

什麼是UMN Professor Ratings?

UMN Professor Ratings是由UMNProfessorRatings開發的Chrome擴展程式,該擴展的主要功能是“Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder”。

下載UMN Professor Ratings擴展crx文件

下載UMN Professor Ratings擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 UMN Professor Ratings UMN Professor Ratings
ID ndepfmgepgkncjjgkgcdhpgcopmnmpmn
官方網址 https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn
簡介 Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
檔案大小 12.12 KB
安裝次數 33
目前版本 2.0
更新時間 2018-07-12
上架時間 2018-07-12
評分 5.00/5 共 4 次評分
開發者 UMNProfessorRatings
付費類型 free
支援的語言 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"
    }
}