USC Schedule Helper

Shows available seats, professor ratings, and gives you the ability to export your calendar!

Qu'est-ce que USC Schedule Helper ?

USC Schedule Helper est une extension Chrome développée par https://jonlu.ca, et sa fonction principale est "Shows available seats, professor ratings, and gives you the ability to export your calendar!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension USC Schedule Helper

Téléchargez les fichiers d'extension USC Schedule Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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]                    

Informations de Base sur l'Extension

Nom USC Schedule Helper USC Schedule Helper
ID gchplemiinhmilinflepfpmjhmbfnlhk
URL Officiel https://chromewebstore.google.com/detail/usc-schedule-helper/gchplemiinhmilinflepfpmjhmbfnlhk
Description Shows available seats, professor ratings, and gives you the ability to export your calendar!
Taille du Fichier 1.23 MB
Nombre d'Installations 20,000
Version Actuelle 13.0.1
Dernière Mise à Jour 2024-01-14
Date de Publication 2020-03-19
Évaluation 4.86/5 Total 28 Évaluations
Développeur https://jonlu.ca
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jonluca/USCSpotsRemaining
URL de la Page d'Aide https://github.com/jonluca/USCSpotsRemaining
URL de la Page de Politique de Confidentialité https://github.com/jonluca/RideShare-Trip-Stats/blob/master/PRIVACY.md
Langues Prises en Charge 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}