UMN Professor Ratings

Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder

UMN Professor Ratings là gì?

UMN Professor Ratings là một tiện ích mở rộng Chrome được phát triển bởi UMNProfessorRatings, và tính năng chính của nó là "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder".

Tải xuống tệp CRX của tiện ích mở rộng UMN Professor Ratings

Tải xuống các tệp mở rộng UMN Professor Ratings dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên UMN Professor Ratings UMN Professor Ratings
ID ndepfmgepgkncjjgkgcdhpgcopmnmpmn
URL Chính Thức https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn
Mô tả Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
Kích Thước Tệp 12.12 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2018-07-12
Ngày Phát Hành 2018-07-12
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển UMNProfessorRatings
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}