GWA Calculator
A simple GWA Calculator extension.
Co to jest GWA Calculator?
GWA Calculator to rozszerzenie Chrome opracowane przez gcmillora, a jego główną funkcją jest „A simple GWA Calculator extension.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GWA Calculator
Pobierz pliki rozszerzeń GWA Calculator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A simple GWA Calculator expansion using HTML,CSS and JavaScript. Users will be able to input each of their grades and its corresponding units and calculate for their General Weighted Average. The extension would help students to calculate and know their GWA or GPA automatically without using calculators and doing extra multiple steps.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | eompkohifnhnjdchhaieegileekehjhn |
Oficjalny URL | https://chromewebstore.google.com/detail/gwa-calculator/eompkohifnhnjdchhaieegileekehjhn |
Opis | A simple GWA Calculator extension. |
Rozmiar pliku | 328 KB |
Liczba instalacji | 949 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2021-07-12 |
Data Publikacji | 2021-07-11 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | gcmillora |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/gcmillora/GWA-Calculator-Chrome-Extension |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GWA Calculator", "description": "A simple GWA Calculator extension.", "version": "1.0", "manifest_version": 2, "browser_action": { "default_icon": "icon128.png", "default_popup": "content.html", "default_title": "GWA Calculator" }, "icons": { "128": "icon128.png" }, "web_accessible_resources": [ "*.ttf" ], "background": { "script": [ "content.js" ] } } |