GWA Calculator
A simple GWA Calculator extension.
GWA Calculatorคืออะไร?
GWA Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gcmillora และคุณลักษณะหลักของมันคือ "A simple GWA Calculator extension."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GWA Calculator
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } } |