Blackbaud GPA Calculator
Calculates your Blackbaud GPA
Was ist Blackbaud GPA Calculator?
Blackbaud GPA Calculator ist eine Chrome-Erweiterung, die von grantfitez entwickelt wurde, und ihr Hauptmerkmal ist "Calculates your Blackbaud GPA".
Erweiterungsscreenshots
Blackbaud GPA Calculator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Blackbaud GPA Calculator-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
This extension will allow you to see your GPA in Blackbaud. Below your classes it will show a table listing the grade, the weighting, the GPA, and the weighted GPA for that class. Above that will be an overall average GPA for the current semester.
Note: Please double-check that the weightings for each class. If there is an issue, email [email protected].
Additionally please email [email protected] if you have any other questions, suggestions or issues.
All art is by Jack Parkhouse. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nlmbfbmjcbmilipngnbncklmldaffdcm |
| Offizielle URL | https://chromewebstore.google.com/detail/blackbaud-gpa-calculator/nlmbfbmjcbmilipngnbncklmldaffdcm |
| Beschreibung | Calculates your Blackbaud GPA |
| Dateigröße | 10.71 KB |
| Installationsanzahl | 166 |
| Aktuelle Version | 2.0.1 |
| Letztes Update | 2020-02-06 |
| Veröffentlichungsdatum | 2020-02-02 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | grantfitez |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Blackbaud GPA Calculator",
"description": "Calculates your Blackbaud GPA",
"version": "2.0.1",
"permissions": [],
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"https:\/\/*.myschoolapp.com\/*"
],
"js": [
"run.js"
]
}
],
"browser_action": {
"default_icon": "icon128.png"
},
"icons": {
"128": "icon128.png"
},
"manifest_version": 2
} | |