Catholic Central GPA Calculator

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

Vad är Catholic Central GPA Calculator?

Catholic Central GPA Calculator är en Chrome-tillägg utvecklad av BD, och dess huvudfunktion är "Automatically loads your GPA on MyCC's progress page, as well as some other useful features".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Catholic Central GPA Calculator-förlängningens CRX-fil

Ladda ner Catholic Central GPA Calculator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Catholic Central GPA Calculator Catholic Central GPA Calculator
ID akbakffdecfdahaciiiniiaopllhmppj
Officiell webbadress https://chromewebstore.google.com/detail/catholic-central-gpa-calc/akbakffdecfdahaciiiniiaopllhmppj
Beskrivning Automatically loads your GPA on MyCC's progress page, as well as some other useful features
Filstorlek 3.59 KB
Antal Installationer 107
Aktuell Version 2.0.0
Senast Uppdaterad 2023-12-17
Publiceringsdatum 2023-12-17
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare BD
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
        ]
    }
}