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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See Rate My Professors ratings alongside a professor's name when searching for Purdue courses. When searching for courses on…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Rate My Boilermakers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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! :)
एक्सटेंशन की मूल जानकारी
नाम | |
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" } } |