BYUI Professor Ratings
View RMP professor ratings on the BYUI registration page
BYUI Professor Ratings란 무엇입니까?
BYUI Professor Ratings은(는) Alex Shnyrov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View RMP professor ratings on the BYUI registration page"입니다.
확장 프로그램 스크린샷
BYUI Professor Ratings 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It's always a struggle to pick the best teacher. That's why you go to RateMyProfessors.com to see what people have to say about specific professors. With this extension, there is no need to go back and forth between the websites. Simply install this extension and navigate to the BYUI registration page to view professor ratings. Also, clicking on the instructor's name will take you directly to RateMyPofessors.com with detailed reviews of the instructor. Hovering over the teacher's name will bring a popup with additional information provided by RateMyProfessors.com Best of all, this extension has 0 loading impact on the registration page.
확장 프로그램 기본 정보
이름 | BYUI Professor Ratings |
ID | gclaiefebdlcbeghfeljkpceioipchcc |
공식 URL | https://chromewebstore.google.com/detail/byui-professor-ratings/gclaiefebdlcbeghfeljkpceioipchcc |
설명 | View RMP professor ratings on the BYUI registration page |
파일 크기 | 1.1 MB |
설치 횟수 | 322 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2024-02-19 |
출시 날짜 | 2020-06-17 |
평점 | 4.40/5 총 5 개의 평점 |
개발자 | Alex Shnyrov |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BYUI Professor Ratings", "short_name": "BYUI RMP", "version": "1.0.2", "description": "View RMP professor ratings on the BYUI registration page", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "host_permissions": [ "https:\/\/search-production.ratemyprofessors.com\/*", "https:\/\/www.ratemyprofessors.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/my.byui.edu\/ICS*", "https:\/\/student.byui.edu\/ICS*" ], "js": [ "registration\/index.js" ], "css": [ "registration\/main.css" ] } ], "background": { "service_worker": "data-processing\/fetcher.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "registration\/index.js", "registration\/byui_rmp.js", "data-processing\/professorData.js" ], "matches": [ "https:\/\/my.byui.edu\/*", "https:\/\/student.byui.edu\/*" ] } ], "action": { "default_icon": "img\/icon128.png" } } |