ProfCheck
View Rate My Professors ratings directly in your course explorer!
什么是ProfCheck?
ProfCheck是由Kelvin Cao开发的Chrome扩展程序,该扩展的主要功能是“View Rate My Professors ratings directly in your course explorer!”。
扩展截图
下载ProfCheck扩展crx文件
下载ProfCheck扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension that displays information from Rate My Professors for teachers using tooltips in UBC's course explorer.
This extension is fast and up-to-date, as it uses the Rate My Professors' API.
Supported schools:
• University of British Columbia (Vancouver & Okanagan) 扩展基本信息
| 名称 | |
| ID | iejcdmcgelpioejdpeoifnaemneihagc |
| 官方URL | https://chromewebstore.google.com/detail/profcheck/iejcdmcgelpioejdpeoifnaemneihagc |
| 简介 | View Rate My Professors ratings directly in your course explorer! |
| 文件大小 | 120 KB |
| 安装次数 | 253 |
| 当前版本 | 1.3.1 |
| 更新时间 | 2022-12-27 |
| 上架时间 | 2021-01-02 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Kelvin Cao |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ProfCheck",
"description": "View Rate My Professors ratings directly in your course explorer!",
"version": "1.3.1",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/courses.students.ubc.ca\/cs\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [],
"host_permissions": [
"https:\/\/*.ratemyprofessors.com\/*"
],
"icons": {
"128": "icon128.png"
}
} | |