Rate My Professor Extension
Displays the reviews for professors from Rate My Professors on the class registration page.
Rate My Professor Extension란 무엇입니까?
Rate My Professor Extension은(는) torresos에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays the reviews for professors from Rate My Professors on the class registration page."입니다.
확장 프로그램 스크린샷
Rate My Professor Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension seamlessly displays professor ratings from Rate My Professors under their names on the class registration pages for Oregon State University and University of British Columbia. We cut down the time you spend looking up professors by providing the average review rating directly on the class registration page along with a direct link to the professor's Rate My Professors page.
확장 프로그램 기본 정보
이름 | Rate My Professor Extension |
ID | hgfogfefocfabnfjmjijfcjogeghmocn |
공식 URL | https://chromewebstore.google.com/detail/rate-my-professor-extensi/hgfogfefocfabnfjmjijfcjogeghmocn |
설명 | Displays the reviews for professors from Rate My Professors on the class registration page. |
파일 크기 | 111 KB |
설치 횟수 | 315 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2023-08-13 |
출시 날짜 | 2023-08-04 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | torresos |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/osu-rate-my-professor-ext\/hgfogfefocfabnfjmjijfcjogeghmocn", "version": "0.0.3", "version_name": "0.0.3", "manifest_version": 3, "default_locale": "en", "minimum_chrome_version": "88", "icons": { "128": "assets\/img\/128x128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/classes.oregonstate.edu\/*" ], "js": [ "OregonSU.js" ] }, { "matches": [ "https:\/\/courses.students.ubc.ca\/cs\/courseschedule*" ], "js": [ "UBC.js" ] } ], "host_permissions": [ "https:\/\/www.ratemyprofessors.com\/*" ], "action": { "default_icon": { "16": "assets\/img\/16x16.png", "24": "assets\/img\/24x24.png", "32": "assets\/img\/32x32.png" }, "default_title": "__MSG_appName__" } } |