Catholic Central GPA Calculator
Automatically loads your GPA on MyCC's progress page, as well as some other useful features
Co to jest Catholic Central GPA Calculator?
Catholic Central GPA Calculator to rozszerzenie Chrome opracowane przez BD, a jego główną funkcją jest „Automatically loads your GPA on MyCC's progress page, as well as some other useful features”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Catholic Central GPA Calculator
Pobierz pliki rozszerzeń Catholic Central GPA Calculator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
• 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)
Podstawowe informacje o rozszerzeniu
Nazwa | Catholic Central GPA Calculator |
ID | akbakffdecfdahaciiiniiaopllhmppj |
Oficjalny URL | https://chromewebstore.google.com/detail/catholic-central-gpa-calc/akbakffdecfdahaciiiniiaopllhmppj |
Opis | Automatically loads your GPA on MyCC's progress page, as well as some other useful features |
Rozmiar pliku | 3.59 KB |
Liczba instalacji | 107 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2023-12-17 |
Data Publikacji | 2023-12-17 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | BD |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/*" ] } } |