GWA Calculator
A simple GWA Calculator extension.
What is GWA Calculator?
GWA Calculator is a Chrome extension developed by gcmillora, and its main feature is "A simple GWA Calculator extension.".
Extension Screenshots
Download GWA Calculator Extension CRX File
Download GWA Calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | eompkohifnhnjdchhaieegileekehjhn |
Official URL | https://chromewebstore.google.com/detail/gwa-calculator/eompkohifnhnjdchhaieegileekehjhn |
Description | A simple GWA Calculator extension. |
File Size | 328 KB |
Installation Count | 949 |
Current Version | 1.0 |
Last Updated | 2021-07-12 |
Publish Date | 2021-07-11 |
Rating | 5.00/5 Total 2 Ratings |
Developer | gcmillora |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/gcmillora/GWA-Calculator-Chrome-Extension |
Supported Languages | 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" ] } } |