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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |