Rate My Boilermakers

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

Qu'est-ce que Rate My Boilermakers ?

Rate My Boilermakers est une extension Chrome développée par DevBoz, et sa fonction principale est "See Rate My Professors ratings alongside a professor's name when searching for Purdue courses. When searching for courses on…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Rate My Boilermakers

Téléchargez les fichiers d'extension Rate My Boilermakers au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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! :)                    

Informations de Base sur l'Extension

Nom Rate My Boilermakers Rate My Boilermakers
ID hipmalcngklbhnjdbkfipkaocfgjijah
URL Officiel https://chrome.google.com/webstore/detail/rate-my-boilermakers/hipmalcngklbhnjdbkfipkaocfgjijah
Description See Rate My Professors ratings alongside a professor's name when searching for Purdue courses. When searching for courses on…
Taille du Fichier 9.43 KB
Nombre d'Installations 66
Version Actuelle 1.2
Dernière Mise à Jour 2019-02-07
Date de Publication 2019-02-07
Évaluation 5.00/5 Total 3 Évaluations
Développeur DevBoz
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}