Blackbaud GPA Calculator
Calculates your Blackbaud GPA
Что такое Blackbaud GPA Calculator?
Blackbaud GPA Calculator - это расширение Chrome, разработанное grantfitez, и его основная функция - "Calculates your Blackbaud GPA".
Снимки экрана расширения
Скачать файл CRX расширения Blackbaud GPA Calculator
Скачайте файлы расширений Blackbaud GPA Calculator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | nlmbfbmjcbmilipngnbncklmldaffdcm |
| Официальный URL | https://chromewebstore.google.com/detail/blackbaud-gpa-calculator/nlmbfbmjcbmilipngnbncklmldaffdcm |
| Описание | Calculates your Blackbaud GPA |
| Размер файла | 10.71 KB |
| Количество установок | 166 |
| Текущая Версия | 2.0.1 |
| Последнее Обновление | 2020-02-06 |
| Дата публикации | 2020-02-02 |
| Рейтинг | 5.00/5 Всего 3 оценок |
| Разработчик | grantfitez |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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
} | |