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
官方URL 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"
    }
}