Sort My Classes

Sort the classes on schedule builder based on ratings of professors!

Τι είναι το Sort My Classes;

Το Sort My Classes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rachit Sharma, και η κύρια λειτουργία του είναι "Sort the classes on schedule builder based on ratings of professors!".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Sort My Classes

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

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

                        When students search for courses to register, they often pick courses based on the overall or difficulty rating (from ratemyprofessors) of the professor of the class. This extension allows a student to sort all the classes they search for by the ratings of the professors. 

This is extremely convenient when looking for courses to sign up for. Many students, including me, repeatedly search up the rate-my-professor scores for each course, which can get extremely time consuming when there are many course options you could take. Now, all you need to do is click one button, and all the possible classes you can take are sorted by ratings of the professors. Then, all you need to do is look at the top few classes to register. 

This will save you so much time when searching for the best or easiest courses to take. During registration for the Fall Quarter 2021, I needed to find a G.E that fit certain requirements and had a highly rated professor. The problem was that there were so many options, and so I found myself wasting 3-5 hours just scouring through rate my professor. If I had this extension, my work would have been done in a few seconds. I hope this extension can provide you with similar time efficiency.                    

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

Όνομα Sort My Classes Sort My Classes
ID bnidhdgmmbkcagojcfopaeedlnbnlhfe
Επίσημο URL https://chromewebstore.google.com/detail/sort-my-classes/bnidhdgmmbkcagojcfopaeedlnbnlhfe
Περιγραφή Sort the classes on schedule builder based on ratings of professors!
Μέγεθος Αρχείου 910 KB
Αριθμός Εγκαταστάσεων 152
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2022-05-04
Ημερομηνία Δημοσίευσης 2021-09-25
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Rachit Sharma
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/RachitSharma2001/SortMyClasses
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/RachitSharma2001/SortMyClasses
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sort My Classes",
    "description": "Sort the classes on schedule builder based on ratings of professors!",
    "version": "0.2",
    "icons": {
        "16": "Icon16.png",
        "48": "Icon48.png",
        "128": "Icon128.png"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/www.ratemyprofessors.com\/ShowRatings.jsp?*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/my.ucdavis.edu\/schedulebuilder\/index.cfm*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "ProfTids.txt"
            ],
            "matches": [
                ""
            ]
        }
    ]
}