USC Schedule Helper
Shows available seats, professor ratings, and gives you the ability to export your calendar!
USC Schedule Helperคืออะไร?
USC Schedule Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jonlu.ca และคุณลักษณะหลักของมันคือ "Shows available seats, professor ratings, and gives you the ability to export your calendar!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย USC Schedule Helper
ดาวน์โหลดไฟล์ส่วนขยาย USC Schedule Helper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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": [ "*:\/\/*\/*" ] } ] } |