ORE - GT Oscar Registration Extension
Do you really, like, REALLY, dislike Oscar? Yeah, me too, and unfortunately, it's hopeless. BUT, you can make your registration…
ORE - GT Oscar Registration Extension란 무엇입니까?
ORE - GT Oscar Registration Extension은(는) Mina Zakhary에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Do you really, like, REALLY, dislike Oscar? Yeah, me too, and unfortunately, it's hopeless. BUT, you can make your registration…"입니다.
확장 프로그램 스크린샷
ORE - GT Oscar Registration Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you really, like, REALLY, dislike Oscar? Yeah, me too, and unfortunately, it's hopeless. BUT, you can make your registration experience a bit more manageable with GT ORE! GT ORE adds the following features to Oscar to make your registration experience more user friendly: 1- Adds a "cart"-like feature that allows you to add your desired courses to the cart, either by adding the CRN manually, or by clicking the "Add to Cart" button next to the course while looking up classes. You can then fill your CRNs all at once by clicking the "Fill CRNs" button on the add/drop page. It is basically a substitute to copying/pasting CRNs. 2-Integrates Course Critique data right into Oscar. Allows you to view each professor's average GPA and grade distribution without having to leave Oscar. Planned Features: -Custom Oscar Themes -Improvements to cart UI -Better manual CRNs validation 1.0.3: -Now works with the new Banner software update -Makes the lookup Subject box bigger 1.0.2: -Fixes: "Fill CRNs" button shows up on random pages. -Integrates the new course critique API
확장 프로그램 기본 정보
이름 | ORE - GT Oscar Registration Extension |
ID | pfdlbmjglgajbogcmhcejkfeflnglich |
공식 URL | https://chromewebstore.google.com/detail/ore-gt-oscar-registration/pfdlbmjglgajbogcmhcejkfeflnglich |
설명 | Do you really, like, REALLY, dislike Oscar? Yeah, me too, and unfortunately, it's hopeless. BUT, you can make your registration… |
파일 크기 | 373 KB |
설치 횟수 | 245 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2022-06-26 |
출시 날짜 | 2020-11-03 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Mina Zakhary |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ORE - GT Oscar Registration Extension", "version": "1.0.4", "permissions": [ "storage", "https:\/\/www.ratemyprofessors.com\/", "https:\/\/critique.gatech.edu\/" ], "content_scripts": [ { "matches": [ "https:\/\/oscar.gatech.edu\/bprod\/bwskfreg.P_AltPin", "https:\/\/oscar.gatech.edu\/bprod\/bwskfcls.P_GetCrse", "https:\/\/oscar.gatech.edu\/bprod\/bwckgens.p_proc_term_date", "https:\/\/oscar.gatech.edu\/bprod\/bwckcoms.P_Regs" ], "js": [ "sweetalert2.all.min.js", "jquery-3.5.1.min.js", "content.js" ], "css": [ "styles.css" ] } ], "background": { "scripts": [ "sweetalert2.all.min.js", "jquery-3.5.1.min.js", "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_icon": "ore.png", "default_title": "ORE Course Cart" }, "icons": { "512": "ore.png" } } |