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 |
官方網址 | 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\/*" ] } |