Catholic Central GPA Calculator

Automatically loads your GPA on MyCC's progress page, as well as some other useful features

Τι είναι το Catholic Central GPA Calculator;

Το Catholic Central GPA Calculator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BD, και η κύρια λειτουργία του είναι "Automatically loads your GPA on MyCC's progress page, as well as some other useful features".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Catholic Central GPA Calculator

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

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

                        • Auto updates for any new versions

• Current, accurate GPA according to CC's grading standard

• Ability to view weighted and unweighted grades

• Calculate your class grade for upcoming assignment

• Calculate your semester grades based on your exam grades

• Calculate the minimum exam grade needed to accomplish a 
  semester grade

---

(Credits to: Bagel03)                    

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

Όνομα Catholic Central GPA Calculator Catholic Central GPA Calculator
ID akbakffdecfdahaciiiniiaopllhmppj
Επίσημο URL https://chromewebstore.google.com/detail/catholic-central-gpa-calc/akbakffdecfdahaciiiniiaopllhmppj
Περιγραφή Automatically loads your GPA on MyCC's progress page, as well as some other useful features
Μέγεθος Αρχείου 3.59 KB
Αριθμός Εγκαταστάσεων 107
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2023-12-17
Ημερομηνία Δημοσίευσης 2023-12-17
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής BD
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "$schema": "https:\/\/json.schemastore.org\/chrome-manifest",
    "manifest_version": 3,
    "name": "Catholic Central GPA Calculator",
    "version": "2.0.0",
    "description": "Automatically loads your GPA on MyCC's progress page, as well as some other useful features",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.myschoolapp.com\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/built\/*"
            ],
            "matches": [
                "https:\/\/*.myschoolapp.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.myschoolapp.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.myschoolapp.com\/*"
        ]
    }
}