UBC Stats Companion

Discover professor ratings and critical statistics for UBC courses.

Τι είναι το UBC Stats Companion;

Το UBC Stats Companion είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ubcstatscompanion, και η κύρια λειτουργία του είναι "Discover professor ratings and critical statistics for UBC courses.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        UBC Stats Companion is a Chrome extension developed for University of British Columbia (UBC) students. It offers essential information to support informed decision-making when selecting courses.

Key Features:
1. Professor Ratings: Access professor ratings submitted by fellow students.
2. Course Statistics: Access comprehensive course statistics, including average grades, to help you understand the historical performance of a course.
3. Seamless Integration: The extension integrates with UBC's course registration system. Navigate to the course's lecture page, and the extension will automatically fetch relevant information about the professor, course, and average grades.
4. RateMyProfessors Integration: Easily access detailed information about professors from RateMyProfessors.com.
5. UBC Grades Integration: Benefit from UBC Grades' comprehensive course statistics. Compare average grades and gain insights into class performance over time. 

Note: Ensure you are on the course's lecture page for the extension to display the most pertinent information.                    

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

Όνομα UBC Stats Companion UBC Stats Companion
ID hogjbhheidjgkabgjfhjdmaieppefagj
Επίσημο URL https://chromewebstore.google.com/detail/ubc-stats-companion/hogjbhheidjgkabgjfhjdmaieppefagj
Περιγραφή Discover professor ratings and critical statistics for UBC courses.
Μέγεθος Αρχείου 246 KB
Αριθμός Εγκαταστάσεων 466
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2023-09-22
Ημερομηνία Δημοσίευσης 2023-06-19
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής ubcstatscompanion
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "UBC Stats Companion",
    "version": "1.0.0",
    "description": "Discover professor ratings and critical statistics for UBC courses.",
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.ratemyprofessors.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/courses.students.ubc.ca\/cs\/courseschedule?pname=subjarea&tname=subj-section&dept=*&course=*§ion=*"
            ],
            "js": [
                "jquery-3.7.0.min.js",
                "contentScript.js"
            ]
        }
    ],
    "action": {
        "default_title": "UBC Extension",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    }
}