UMDStats

Enhances browsing experience on University of Maryland's course catalog page (Schedule of Classes) by: 1. Displaying an average…

Τι είναι το UMDStats;

Το UMDStats είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον UMDStats, και η κύρια λειτουργία του είναι "Enhances browsing experience on University of Maryland's course catalog page (Schedule of Classes) by: 1. Displaying an average…".

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

screenshot
screenshot

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

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

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

                        Enhances browsing experience on University of Maryland's course catalog page (Schedule of Classes) by:

1. Displaying an average rating of the professor underneath their name as well as a visual star rating
2. Creating a hyperlink on the reviews visual the extension creates, that links to the professor's PlanetTerp review page, where users can read the reviews of the professor
3. Similarly, the extension adds a hyperlink to the course name which links to the associated PlanetTerp course page, where users can see the distribution of GPA grades visually. 
4. Including an average GPA of the course right under the course name


This extension works on any UMD course catalog (Schedule Of Classes) page that have visible course names and sections. On page load, this extension gathers all the course names and adds in the GPA of the course underneath the name. Professor ratings are only injected once a section becomes visible (i.e when the user clicks on 'Show Section' for a specific course). Once that happens, a hyperlink text of the rating will be added that the user can click on to directly jump to the PlanetTerp review page for that professor, as well as a simple star visual rating underneath. I would like to note that PlanetTerp's API, contains all course data and professor reviews. This is why we extract our information from there. 


The motivation behind this is to allow students of UMD to make informed decisions when signing up for classes. With the use of PlanetTerp's API, this makes signing up for courses, much easier!                    

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

Όνομα UMDStats UMDStats
ID bfcaffegldikdfgehpeiidcggjehcfin
Επίσημο URL https://chromewebstore.google.com/detail/umdstats/bfcaffegldikdfgehpeiidcggjehcfin
Περιγραφή Enhances browsing experience on University of Maryland's course catalog page (Schedule of Classes) by: 1. Displaying an average…
Μέγεθος Αρχείου 195 KB
Αριθμός Εγκαταστάσεων 274
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-01-19
Ημερομηνία Δημοσίευσης 2021-01-14
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής UMDStats
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UMDStats",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.testudo.umd.edu\/soc\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "ratings.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/api.planetterp.com\/v1\/*",
        "https:\/\/planetterp.com\/professor\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}