Catholic Central GPA Calculator
Automatically loads your GPA on MyCC's progress page, as well as some other useful features
What is Catholic Central GPA Calculator?
Catholic Central GPA Calculator is a Chrome extension developed by BD, and its main feature is "Automatically loads your GPA on MyCC's progress page, as well as some other useful features".
Extension Screenshots
Download Catholic Central GPA Calculator Extension CRX File
Download Catholic Central GPA Calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
• 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)
Extension Basic Information
Name | Catholic Central GPA Calculator |
ID | akbakffdecfdahaciiiniiaopllhmppj |
Official URL | https://chromewebstore.google.com/detail/catholic-central-gpa-calc/akbakffdecfdahaciiiniiaopllhmppj |
Description | Automatically loads your GPA on MyCC's progress page, as well as some other useful features |
File Size | 3.59 KB |
Installation Count | 107 |
Current Version | 2.0.0 |
Last Updated | 2023-12-17 |
Publish Date | 2023-12-17 |
Rating | 5.00/5 Total 2 Ratings |
Developer | BD |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } } |