UT Course Scheduler

Automatically enroll in your selected courses at your registration time for UT Austin!

Τι είναι το UT Course Scheduler;

Το UT Course Scheduler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Max Weinreb and Logan Vaz, και η κύρια λειτουργία του είναι "Automatically enroll in your selected courses at your registration time for UT Austin!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης UT Course Scheduler

Λήψη αρχείων επέκτασης UT Course Scheduler σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Registration at UT is a stressful process. You wake up early with a list of classes you want to get into, and desperately copy and paste course codes hoping to get what you want. It's needlessly stress inducing and difficult.

That's why we created UT Course Scheduler. With a simple and intuitive user interface, sometime before your registration you just enter the courses you want, whether you want to add yourself to their waitlist if you aren't able to be added immediately, and alternate courses to try and get into if you aren't successfully added to your requested course.

After adding your classes, simply set your registration time, and you're done! All you need to do on your registration day is log into your UT account before registration, and the extension will take care of the rest: opening your registration and adding you to all your classes and waitlists in less than 1 second!

We recommend reading through the FAQ before registration, as it contains a guide so you can quickly learn the ins and outs of the extension.

Make sure to look at the results afterward to confirm that you're happy with your registration. If not, you can make some manual edits as you would during a normal registration process. If you're curious what happened during your registration or why you weren't able to get into some of the courses you wanted, just check the log and you can see the full process throughout. 

We hope this tool will be very helpful to you and at the very least save you some time. If you enjoyed it, make sure to leave a positive review!

Disclaimer: Not affiliated with the University of Texas at Austin, and should only be used at your own risk.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα UT Course Scheduler UT Course Scheduler
ID fmdoompjdgllmhlennolfdheookediln
Επίσημο URL https://chromewebstore.google.com/detail/ut-course-scheduler/fmdoompjdgllmhlennolfdheookediln
Περιγραφή Automatically enroll in your selected courses at your registration time for UT Austin!
Μέγεθος Αρχείου 6.1 MB
Αριθμός Εγκαταστάσεων 214
Τρέχουσα Έκδοση 0.0.31
Τελευταία Ενημέρωση 2023-04-05
Ημερομηνία Δημοσίευσης 2023-01-11
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Max Weinreb and Logan Vaz
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/loganvaz/UT-Course-Scheduler
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "UT Course Scheduler",
    "description": "Automatically enroll in your selected courses at your registration time for UT Austin!",
    "version": "0.0.31",
    "action": {
        "default_popup": "htmls\/index.html",
        "default_icon": "images\/logo\/logo.png"
    },
    "icons": {
        "16": "images\/logo\/logo16.png",
        "32": "images\/logo\/logo32.png",
        "48": "images\/logo\/logo48.png",
        "128": "images\/logo\/logo128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/load_registration.js"
            ],
            "matches": [
                "https:\/\/utdirect.utexas.edu\/registration\/chooseSemester.WBX"
            ]
        },
        {
            "js": [
                "scripts\/registration.js"
            ],
            "matches": [
                "https:\/\/utdirect.utexas.edu\/registration\/registration.WBX*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [
        "storage",
        "alarms"
    ]
}