UMD Schedule of Classes Professor Rating
This extension will add professor ratings to each section in the UMD Schedule of Classes.
什么是UMD Schedule of Classes Professor Rating?
UMD Schedule of Classes Professor Rating是由a.mccourt60开发的Chrome扩展程序,该扩展的主要功能是“This extension will add professor ratings to each section in the UMD Schedule of Classes.”。
扩展截图
下载UMD Schedule of Classes Professor Rating扩展crx文件
下载UMD Schedule of Classes Professor Rating扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is a personal side project to practice JQuery and Javascript. This extension adds ratings to the UMD Schedule of Classes on Testudo for each professor. This will allow students to choose which sections they would like to register for without having to open new browser tabs to check professor ratings.
扩展基本信息
名称 | UMD Schedule of Classes Professor Rating |
ID | jghbeiknpbpkicbeckkkdpalgdaeehmd |
官方URL | https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd |
简介 | This extension will add professor ratings to each section in the UMD Schedule of Classes. |
文件大小 | 1.16 MB |
安装次数 | 41 |
当前版本 | 1.1 |
更新时间 | 2017-12-11 |
上架时间 | 2017-12-10 |
开发者 | a.mccourt60 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://amccourt.github.io/ |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UMD Schedule of Classes Professor Rating", "description": "This extension will add professor ratings to each section in the UMD Schedule of Classes.", "version": "1.1", "browser_action": { "default_icon": "img\/testudo.png", "default_title": "UMD Professor Rating" }, "permissions": [ "activeTab", "https:\/\/search.mtvnservices.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/ntst.umd.edu\/soc\/*" ], "js": [ "jquery-3.2.1.min.js", "content-script.js" ] } ] } |