GWA Calculator

A simple GWA Calculator extension.

ما هو GWA Calculator؟

GWA Calculator هو إضافة Chrome تم تطويرها بواسطة gcmillora، والميزة الرئيسية لها هي "A simple GWA Calculator extension.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة GWA Calculator

قم بتنزيل ملفات الامتداد GWA Calculator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        ]
    }
}