Rate My Gopher UMN Professor Ratings
Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.
什么是Rate My Gopher UMN Professor Ratings?
Rate My Gopher UMN Professor Ratings是由https://yelt3d.com开发的Chrome扩展程序,该扩展的主要功能是“Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.”。
扩展截图
下载Rate My Gopher UMN Professor Ratings扩展crx文件
下载Rate My Gopher UMN Professor Ratings扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
See Rate My Professors ratings alongside a professor's name when searching for UMN courses. When searching for courses on UMN's schedule builder, RMP's overall score, difficulty score, and review tags will be shown on the righthand side of the screen for each instructor teaching the course. Clicking on the professor's name will open a link to the RMP website with detailed responses and reviews. 1. Load up the University of Minnesota schedule builder. 2. Click the "Search Professors Button"
扩展基本信息
名称 | |
ID | pmblceckdalgamfhocahemcelikplpkg |
官方URL | https://chromewebstore.google.com/detail/rate-my-gopher-umn-profes/pmblceckdalgamfhocahemcelikplpkg |
简介 | Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC. |
文件大小 | 46.89 KB |
安装次数 | 160 |
当前版本 | 0.1 |
更新时间 | 2020-01-15 |
上架时间 | 2020-01-15 |
评分 | 4.86/5 共7次评分 |
开发者 | https://yelt3d.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://yelt3d.com/coding-projects/university-of-minnesota-rate-my-professor-chrome-extension/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Rate My Gopher UMN Professor Ratings", "version": "0.1", "description": "Load Rate My Professor ratings on the University of Minnesota schedule builder website! This extension works for UMN TC.", "browser_action": { "default_icon": { "16": "icon16.png", "32": "icon32.png" }, "default_popup": "popup.html", "default_title": "Check here to see Rate My Goper instructions and developer credits." }, "permissions": [ "https:\/\/solr-aws-elb-production.ratemyprofessors.com\/*" ], "icons": { "128": "icon128.png", "32": "icon32.png", "48": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/schedulebuilder.umn.edu\/*" ], "js": [ "jquery-3.4.1.min.js", "content.js" ], "run_at": "document_end" } ] } |