Pinnacle Grade Calculator

An extension to see how an assignment will affect your class grade.

Что такое Pinnacle Grade Calculator?

Pinnacle Grade Calculator - это расширение Chrome, разработанное William Chiang & Salvador Aleguas, и его основная функция - "An extension to see how an assignment will affect your class grade.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Pinnacle Grade Calculator

Скачайте файлы расширений Pinnacle Grade Calculator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Ever wanted to see how a grade would impact your average in a class? Well that's simple: if it does not use point systems, add up all the points you earned plus the new grade's achieved points then divide by the...

Oh wait, that might take a while.

That's why this extension was made. You can add fake grades and your class average will automatically update based on the new grade. It even works on categories too!

Note: We are not liable for any damages that may result from the use of our product. Calculations may not be a hundred percent accurate.

Update 1.0.4: Fixed Functionality                    

Основная информация о расширении

Название Pinnacle Grade Calculator Pinnacle Grade Calculator
ID ajmebljhmdndihimeodajeiicccpdfei
Официальный URL https://chromewebstore.google.com/detail/pinnacle-grade-calculator/ajmebljhmdndihimeodajeiicccpdfei
Описание An extension to see how an assignment will affect your class grade.
Размер файла 88.6 KB
Количество установок 4,237
Текущая Версия 1.0.4
Последнее Обновление 2020-12-05
Дата публикации 2019-08-31
Рейтинг 3.70/5 Всего 10 оценок
Разработчик William Chiang & Salvador Aleguas
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/WillBillChiang/Pinnacle-Grade-Calculator
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pinnacle Grade Calculator",
    "version": "1.0.4",
    "description": "An extension to see how an assignment will affect your class grade.",
    "homepage_url": "https:\/\/github.com\/WillBillChiang\/Pinnacle-Grade-Calculator",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/gb.browardschools.com\/Pinnacle\/Gradebook\/InternetViewer\/StudentAssignments*"
            ],
            "js": [
                "assets\/js\/calculate.js"
            ],
            "css": [
                "assets\/css\/style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "assets\/image\/book.png"
    },
    "icons": {
        "16": "assets\/image\/book.png",
        "48": "assets\/image\/book2.png",
        "128": "assets\/image\/book3.png"
    },
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ]
    },
    "permissions": []
}