Rate My Boilermakers

See Rate My Professors ratings alongside a professor's name when searching for Purdue courses. When searching for courses on…

什么是Rate My Boilermakers?

Rate My Boilermakers是由DevBoz开发的Chrome扩展程序,该扩展的主要功能是“See Rate My Professors ratings alongside a professor's name when searching for Purdue courses. When searching for courses on…”。

扩展截图

screenshot
screenshot

下载Rate My Boilermakers扩展crx文件

下载Rate My Boilermakers扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        See Rate My Professors ratings alongside a professor's name when searching for Purdue courses.

When searching for courses on Purdue's course catalog, Rate My Professors's Overall Rating will be shown next to each instructor. In addition to the ratings, it also shows you the number of students that rated the professor.

-Go to your mypurdue class search in the "Registration" tab when clicked on "Look Up Classes". 
-Select a year and a course. 
-The ratings will automatically appear by the professor's name as shown in the screenshots.

If it says "No Rating", it means the professor has not been rated yet on ratemyprofessors.com.

This extension can be disabled. This option can be accessed by going to the options menu of the extension by right clicking on the icon and selecting Options. The options can also be accessed through the chrome extensions page (chrome://extensions).

This project is open source! Contribute by forking on GitHub!
https://github.com/adilbozai1995/Rate-my-Boilermakers

For Purdue students! 
Boiler Up!

Venmo: @adilbozai
Donations appreciated! :)                    

扩展基本信息

名称 Rate My Boilermakers Rate My Boilermakers
ID hipmalcngklbhnjdbkfipkaocfgjijah
官方URL https://chrome.google.com/webstore/detail/rate-my-boilermakers/hipmalcngklbhnjdbkfipkaocfgjijah
简介 See Rate My Professors ratings alongside a professor's name when searching for Purdue courses. When searching for courses on…
文件大小 9.43 KB
安装次数 66
当前版本 1.2
更新时间 2019-02-07
上架时间 2019-02-07
评分 5.00/5 共3次评分
开发者 DevBoz
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rate My Boilermakers",
    "version": "1.2",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/selfservice.mypurdue.purdue.edu\/prod\/bwskfcls.P_GetCrse"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/www.ratemyprofessors.com\/search.jsp?queryBy=teacherName&schoolName=purdue+university+-+west+lafayette&queryoption=HEADER&query=*",
        "https:\/\/www.ratemyprofessors.com\/ShowRatings*",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "RMB.png"
    }
}