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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DevBoz และคุณลักษณะหลักของมันคือ "See Rate My Professors ratings alongside a professor's name when searching for Purdue courses. When searching for courses on…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rate My Boilermakers

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}