GWA Calculator

A simple GWA Calculator extension.

什么是GWA Calculator?

GWA Calculator是由gcmillora开发的Chrome扩展程序,该扩展的主要功能是“A simple GWA Calculator extension.”。

扩展截图

screenshot

下载GWA Calculator扩展crx文件

下载GWA Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 GWA Calculator GWA Calculator
ID eompkohifnhnjdchhaieegileekehjhn
官方URL https://chromewebstore.google.com/detail/gwa-calculator/eompkohifnhnjdchhaieegileekehjhn
简介 A simple GWA Calculator extension.
文件大小 328 KB
安装次数 949
当前版本 1.0
更新时间 2021-07-12
上架时间 2021-07-11
评分 5.00/5 共2次评分
开发者 gcmillora
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/gcmillora/GWA-Calculator-Chrome-Extension
支持的语言 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"
        ]
    }
}