RIT Rate My Professor Extension
Shows the Rate My Professors rating of RIT professors while searching for classes on Tiger Center and CSH Schedule Maker.
什麼是RIT Rate My Professor Extension?
RIT Rate My Professor Extension是由DisillusionedGatsby開發的Chrome擴展程式,該擴展的主要功能是“Shows the Rate My Professors rating of RIT professors while searching for classes on Tiger Center and CSH Schedule Maker.”。
擴展截圖
下載RIT Rate My Professor Extension擴展crx文件
下載RIT Rate My Professor Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Professors' names will now link to their Rate My Professors page (or the search results if not found). To better find professors, this extension will try different first/middle name combos as well as associated nicknames and diminutive names. The Github repo is here: https://github.com/CalvinWu4/RIT-Rate-My-Professors-Extension
擴展基本資訊
名稱 | RIT Rate My Professor Extension |
ID | lcionigofpcbfpmnipnioapimoggnbda |
官方網址 | https://chromewebstore.google.com/detail/rit-rate-my-professor-ext/lcionigofpcbfpmnipnioapimoggnbda |
簡介 | Shows the Rate My Professors rating of RIT professors while searching for classes on Tiger Center and CSH Schedule Maker. |
檔案大小 | 442 KB |
安裝次數 | 130 |
目前版本 | 3.0.0 |
更新時間 | 2023-07-24 |
上架時間 | 2020-10-28 |
評分 | 5.00/5 共 2 次評分 |
開發者 | DisillusionedGatsby |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "RIT Rate My Professor Extension", "version": "3.0.0", "description": "Shows the Rate My Professors rating of RIT professors while searching for classes on Tiger Center and CSH Schedule Maker.", "author": "Calvin Wu", "browser_specific_settings": { "gecko": { "id": "{2f9f4409-05af-4441-82f0-13a3449dd1e6}", "strict_min_version": "101.0" } }, "host_permissions": [ "https:\/\/ratemyprofessors.com\/graphql", "https:\/\/www.ratemyprofessors.com\/graphql", "https:\/\/raw.githubusercontent.com\/carltonnorthern\/nickname-and-diminutive-names-lookup\/master\/names.csv\/" ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ ".\/tippy.css", ".\/light.css", ".\/content.css", ".\/content.bundle.js.map", ".\/background.bundle.js.map", ".\/background.bundle.js.LICENSE.txt" ], "matches": [ "https:\/\/tigercenter.rit.edu\/*", "https:\/\/schedulemaker.csh.rit.edu\/*", "https:\/\/schedule.csh.rit.edu\/*" ], "use_dynamic_url": true } ], "content_scripts": [ { "js": [ ".\/content.bundle.js" ], "css": [ ".\/tippy.css", ".\/light.css", ".\/content.css" ], "matches": [ "https:\/\/tigercenter.rit.edu\/tigerCenterApp\/api\/class-search*", "https:\/\/schedulemaker.csh.rit.edu\/*", "https:\/\/schedule.csh.rit.edu\/*" ], "run_at": "document_end" } ], "background": { "service_worker": ".\/background.bundle.js" }, "icons": { "16": ".\/images\/16.png", "48": ".\/images\/48.png", "96": ".\/images\/96.png", "128": ".\/images\/128.png" } } |