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