RateMyTrojans
Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
什么是RateMyTrojans?
RateMyTrojans是由Kyle Chua开发的Chrome扩展程序,该扩展的主要功能是“Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.”。
扩展截图
下载RateMyTrojans扩展crx文件
下载RateMyTrojans扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
View the source code: https://github.com/kylechua/rmpLinks-USC
扩展基本信息
名称 | RateMyTrojans |
ID | kmhmknbhcdgedenadphgnpaelgabimmi |
官方URL | https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi |
简介 | Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website. |
文件大小 | 435 KB |
安装次数 | 192 |
当前版本 | 1.0.2 |
更新时间 | 2018-08-08 |
上架时间 | 2018-07-09 |
开发者 | Kyle Chua |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/kylechua/rmpLinks-USC |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RateMyTrojans", "description": "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.", "version": "1.0.2", "background": { "scripts": [ "jquery-3.2.1.min.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/webreg.usc.edu\/*" ], "js": [ "jquery-3.2.1.min.js", "findProfs.js" ] } ], "web_accessible_resources": [ "img\/*.png" ], "permissions": [ "https:\/\/www.ratemyprofessors.com\/*" ] } |