USC Schedule Helper
Shows available seats, professor ratings, and gives you the ability to export your calendar!
USC Schedule Helper란 무엇입니까?
USC Schedule Helper은(는) https://jonlu.ca에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows available seats, professor ratings, and gives you the ability to export your calendar!"입니다.
확장 프로그램 스크린샷
USC Schedule Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension makes registering for classes that much easier! Quickly shows you: - Rating for the professor - How many seats are left in Lecture sections - Whether the class is closed - Whether the class section would conflict with your current schedule - Emails for when a seat opens up in a class! - Texts for when a seat opens up in a class! Please note! The email notification service is still in Alpha and is not guaranteed to work. Any feedback is welcome: [email protected]
확장 프로그램 기본 정보
이름 | USC Schedule Helper |
ID | gchplemiinhmilinflepfpmjhmbfnlhk |
공식 URL | https://chromewebstore.google.com/detail/usc-schedule-helper/gchplemiinhmilinflepfpmjhmbfnlhk |
설명 | Shows available seats, professor ratings, and gives you the ability to export your calendar! |
파일 크기 | 1.23 MB |
설치 횟수 | 20,000 |
현재 버전 | 13.0.1 |
최근 업데이트 | 2024-01-14 |
출시 날짜 | 2020-03-19 |
평점 | 4.86/5 총 28 개의 평점 |
개발자 | https://jonlu.ca |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jonluca/USCSpotsRemaining |
도움말 페이지 URL | https://github.com/jonluca/USCSpotsRemaining |
개인정보 보호 정책 페이지 URL | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "USC Schedule Helper", "description": "Shows available seats, professor ratings, and gives you the ability to export your calendar!", "version": "13.0.1", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/classes.usc.edu\/*\/classes\/*", "*:\/\/webreg.usc.edu\/*", "http:\/\/jonlu.ca\/*", "https:\/\/jonlu.ca\/*" ], "content_scripts": [ { "matches": [ "*:\/\/classes.usc.edu\/*\/classes\/*", "*:\/\/webreg.usc.edu\/*" ], "js": [ "js\/libs\/jquery.js", "js\/common.js", "js\/libs\/moment.js", "js\/libs\/mailcheck.min.js", "js\/libs\/sweetalert.min.js", "USCScheduleHelper.js" ] } ], "icons": { "64": "images\/icon64.png", "32": "images\/icon32.png", "38": "images\/icon.png", "128": "images\/icon128.png" }, "background": { "service_worker": "js\/common.js" }, "action": { "default_popup": "html\/popup.html", "default_title": "USC Schedule Helper" }, "homepage_url": "https:\/\/jonlu.ca", "web_accessible_resources": [ { "resources": [ "data\/*", "css\/*", "images\/*", "js\/*" ], "matches": [ "*:\/\/*\/*" ] } ] } |