Catholic Central GPA Calculator

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

Cos'è Catholic Central GPA Calculator?

Catholic Central GPA Calculator è un'estensione di Chrome sviluppata da BD, e la sua funzione principale è "Automatically loads your GPA on MyCC's progress page, as well as some other useful features".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Catholic Central GPA Calculator

Scarica i file di estensione Catholic Central GPA Calculator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        • 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)                    

Informazioni di Base sull'Estensione

Nome Catholic Central GPA Calculator Catholic Central GPA Calculator
ID akbakffdecfdahaciiiniiaopllhmppj
URL Ufficiale https://chromewebstore.google.com/detail/catholic-central-gpa-calc/akbakffdecfdahaciiiniiaopllhmppj
Descrizione Automatically loads your GPA on MyCC's progress page, as well as some other useful features
Dimensione del File 3.59 KB
Conteggio Installazioni 107
Versione Corrente 2.0.0
Ultimo Aggiornamento 2023-12-17
Data di Pubblicazione 2023-12-17
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore BD
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
        ]
    }
}