Catholic Central GPA Calculator
Automatically loads your GPA on MyCC's progress page, as well as some other useful features
Wat is Catholic Central GPA Calculator?
Catholic Central GPA Calculator is een Chrome-extensie ontwikkeld door BD, en de belangrijkste functie is "Automatically loads your GPA on MyCC's progress page, as well as some other useful features".
Extensie Screenshots
Download het CRX-bestand van de extensie Catholic Central GPA Calculator
Download Catholic Central GPA Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
• 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)
Basisinformatie over de Extensie
Naam | Catholic Central GPA Calculator |
ID | akbakffdecfdahaciiiniiaopllhmppj |
Officiële URL | https://chromewebstore.google.com/detail/catholic-central-gpa-calc/akbakffdecfdahaciiiniiaopllhmppj |
Beschrijving | Automatically loads your GPA on MyCC's progress page, as well as some other useful features |
Bestandsgrootte | 3.59 KB |
Aantal Installaties | 107 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2023-12-17 |
Publicatiedatum | 2023-12-17 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | BD |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } } |