UBC Stats Companion
Discover professor ratings and critical statistics for UBC courses.
UBC Stats Companion란 무엇입니까?
UBC Stats Companion은(는) ubcstatscompanion에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Discover professor ratings and critical statistics for UBC courses."입니다.
확장 프로그램 스크린샷
UBC Stats Companion 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
UBC Stats Companion is a Chrome extension developed for University of British Columbia (UBC) students. It offers essential information to support informed decision-making when selecting courses. Key Features: 1. Professor Ratings: Access professor ratings submitted by fellow students. 2. Course Statistics: Access comprehensive course statistics, including average grades, to help you understand the historical performance of a course. 3. Seamless Integration: The extension integrates with UBC's course registration system. Navigate to the course's lecture page, and the extension will automatically fetch relevant information about the professor, course, and average grades. 4. RateMyProfessors Integration: Easily access detailed information about professors from RateMyProfessors.com. 5. UBC Grades Integration: Benefit from UBC Grades' comprehensive course statistics. Compare average grades and gain insights into class performance over time. Note: Ensure you are on the course's lecture page for the extension to display the most pertinent information.
확장 프로그램 기본 정보
이름 | UBC Stats Companion |
ID | hogjbhheidjgkabgjfhjdmaieppefagj |
공식 URL | https://chromewebstore.google.com/detail/ubc-stats-companion/hogjbhheidjgkabgjfhjdmaieppefagj |
설명 | Discover professor ratings and critical statistics for UBC courses. |
파일 크기 | 246 KB |
설치 횟수 | 466 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2023-09-22 |
출시 날짜 | 2023-06-19 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | ubcstatscompanion |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "UBC Stats Companion", "version": "1.0.0", "description": "Discover professor ratings and critical statistics for UBC courses.", "permissions": [ "tabs", "storage" ], "host_permissions": [ "https:\/\/www.ratemyprofessors.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/courses.students.ubc.ca\/cs\/courseschedule?pname=subjarea&tname=subj-section&dept=*&course=*§ion=*" ], "js": [ "jquery-3.7.0.min.js", "contentScript.js" ] } ], "action": { "default_title": "UBC Extension", "default_popup": "popup.html" }, "icons": { "128": "icon.png" } } |