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文件
下载UBC Stats Companion扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |