PowerGPA

This extension calculates your current GPA

Was ist PowerGPA?

PowerGPA ist eine Chrome-Erweiterung, die von Braeden Smith entwickelt wurde, und ihr Hauptmerkmal ist "This extension calculates your current GPA".

Erweiterungsscreenshots

screenshot

PowerGPA-Erweiterungs-CRX-Datei herunterladen

Laden Sie PowerGPA-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

                        ***1.0.5 note***: WPS decided to change "HNRS" to "HONORS and "A.P." to "AP". Then they changed it back. 
----

This extension takes current accessible grades and displays a calculated GPA from Powerschool. Just go to view your grades normally and your GPA will appear on the top.

This extension is in no way affiliated with Powerschool or any related products. Built for the Westport Public School District currently.

There may be issues with the GPA weighting, message me or email me if this occurs.                    

Grundlegende Informationen zur Erweiterung

Name PowerGPA PowerGPA
ID bdbhephmimagiadamkkipjedljddgncb
Offizielle URL https://chromewebstore.google.com/detail/powergpa/bdbhephmimagiadamkkipjedljddgncb
Beschreibung This extension calculates your current GPA
Dateigröße 481 KB
Installationsanzahl 620
Aktuelle Version 1.0.5
Letztes Update 2018-12-18
Veröffentlichungsdatum 2018-12-17
Bewertung 4.43/5 Insgesamt 7 Bewertungen
Entwickler Braeden Smith
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PowerGPA",
    "description": "This extension calculates your current GPA",
    "version": "1.0.5",
    "browser_action": {
        "default_icon": "smallicon.png"
    },
    "icons": {
        "128": "smallicon.png",
        "48": "smallicon.png",
        "16": "smallicon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.2.1.min.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/*.westportps.org\/guardian\/home.html"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.csv"
    ]
}