USC Schedule Helper
Shows available seats, professor ratings, and gives you the ability to export your calendar!
Was ist USC Schedule Helper?
USC Schedule Helper ist eine Chrome-Erweiterung, die von https://jonlu.ca entwickelt wurde, und ihr Hauptmerkmal ist "Shows available seats, professor ratings, and gives you the ability to export your calendar!".
Erweiterungsscreenshots
USC Schedule Helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie USC Schedule Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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]
Grundlegende Informationen zur Erweiterung
Name | USC Schedule Helper |
ID | gchplemiinhmilinflepfpmjhmbfnlhk |
Offizielle URL | https://chromewebstore.google.com/detail/usc-schedule-helper/gchplemiinhmilinflepfpmjhmbfnlhk |
Beschreibung | Shows available seats, professor ratings, and gives you the ability to export your calendar! |
Dateigröße | 1.23 MB |
Installationsanzahl | 20,000 |
Aktuelle Version | 13.0.1 |
Letztes Update | 2024-01-14 |
Veröffentlichungsdatum | 2020-03-19 |
Bewertung | 4.86/5 Insgesamt 28 Bewertungen |
Entwickler | https://jonlu.ca |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jonluca/USCSpotsRemaining |
Hilfeseite URL | https://github.com/jonluca/USCSpotsRemaining |
URL der Datenschutzrichtlinien-Seite | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
Unterstützte Sprachen | 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": [ "*:\/\/*\/*" ] } ] } |