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…"입니다.
확장 프로그램 스크린샷
Rate My Boilermakers 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |