GWA Calculator

A simple GWA Calculator extension.

Was ist GWA Calculator?

GWA Calculator ist eine Chrome-Erweiterung, die von gcmillora entwickelt wurde, und ihr Hauptmerkmal ist "A simple GWA Calculator extension.".

Erweiterungsscreenshots

screenshot

GWA Calculator-Erweiterungs-CRX-Datei herunterladen

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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name GWA Calculator GWA Calculator
ID eompkohifnhnjdchhaieegileekehjhn
Offizielle URL https://chromewebstore.google.com/detail/gwa-calculator/eompkohifnhnjdchhaieegileekehjhn
Beschreibung A simple GWA Calculator extension.
Dateigröße 328 KB
Installationsanzahl 949
Aktuelle Version 1.0
Letztes Update 2021-07-12
Veröffentlichungsdatum 2021-07-11
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler gcmillora
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/gcmillora/GWA-Calculator-Chrome-Extension
Unterstützte Sprachen 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"
        ]
    }
}