USC Schedule Helper
Shows available seats, professor ratings, and gives you the ability to export your calendar!
Wat is USC Schedule Helper?
USC Schedule Helper is een Chrome-extensie ontwikkeld door https://jonlu.ca, en de belangrijkste functie is "Shows available seats, professor ratings, and gives you the ability to export your calendar!".
Extensie Screenshots
Download het CRX-bestand van de extensie USC Schedule Helper
Download USC Schedule Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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]
Basisinformatie over de Extensie
Naam | USC Schedule Helper |
ID | gchplemiinhmilinflepfpmjhmbfnlhk |
Officiële URL | https://chromewebstore.google.com/detail/usc-schedule-helper/gchplemiinhmilinflepfpmjhmbfnlhk |
Beschrijving | Shows available seats, professor ratings, and gives you the ability to export your calendar! |
Bestandsgrootte | 1.23 MB |
Aantal Installaties | 20,000 |
Huidige Versie | 13.0.1 |
Laatst Bijgewerkt | 2024-01-14 |
Publicatiedatum | 2020-03-19 |
Beoordeling | 4.86/5 Totaal 28 Beoordelingen |
Ontwikkelaar | https://jonlu.ca |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/jonluca/USCSpotsRemaining |
Help Pagina-URL | https://github.com/jonluca/USCSpotsRemaining |
URL van de Privacybeleid Pagina | https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md |
Ondersteunde Talen | 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": [ "*:\/\/*\/*" ] } ] } |