Catholic Central GPA Calculator
Automatically loads your GPA on MyCC's progress page, as well as some other useful features
Was ist Catholic Central GPA Calculator?
Catholic Central GPA Calculator ist eine Chrome-Erweiterung, die von BD entwickelt wurde, und ihr Hauptmerkmal ist "Automatically loads your GPA on MyCC's progress page, as well as some other useful features".
Erweiterungsscreenshots
Catholic Central GPA Calculator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Catholic Central GPA Calculator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
• 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)
Grundlegende Informationen zur Erweiterung
Name | Catholic Central GPA Calculator |
ID | akbakffdecfdahaciiiniiaopllhmppj |
Offizielle URL | https://chromewebstore.google.com/detail/catholic-central-gpa-calc/akbakffdecfdahaciiiniiaopllhmppj |
Beschreibung | Automatically loads your GPA on MyCC's progress page, as well as some other useful features |
Dateigröße | 3.59 KB |
Installationsanzahl | 107 |
Aktuelle Version | 2.0.0 |
Letztes Update | 2023-12-17 |
Veröffentlichungsdatum | 2023-12-17 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | BD |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } } |