GradeMyGold
Easily calculate your predicted GPA within GOLD.
GradeMyGoldคืออะไร?
GradeMyGold เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Casey Barbello และคุณลักษณะหลักของมันคือ "Easily calculate your predicted GPA within GOLD."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GradeMyGold
ดาวน์โหลดไฟล์ส่วนขยาย GradeMyGold ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
GradeMyGold makes predicting your future GPA easy by adding a GPA calculator to UCSB's GOLD website. Simply go to the "Grades" tab on GOLD and select "All Quarters." A calculator will appear at the bottom of the page next to your current quarter. GradeMyGold correctly calculates your GPA, even if you are retaking a course. If you would like to omit a course grade, set its corresponding drop down to "P/NP" and it will be excluded from the calculation. All calculations are performed locally on your machine. Your data is not altered and nothing is reported to me.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GradeMyGold |
ID | jneakpjhcnajlhemfopfpacikagpolkn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn |
คำอธิบาย | Easily calculate your predicted GPA within GOLD. |
ขนาดไฟล์ | 9.14 KB |
จำนวนการติดตั้ง | 149 |
เวอร์ชันปัจจุบัน | 1.6 |
อัปเดตครั้งล่าสุด | 2018-04-18 |
วันที่เผยแพร่ | 2018-04-17 |
คะแนน | 4.57/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | Casey Barbello |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GradeMyGold", "version": "1.6", "author": "Casey Barbello", "description": "Easily calculate your predicted GPA within GOLD.", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "page_action": { "default_icon": "icon.png" }, "permissions": [ "tabs" ], "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/my.sa.ucsb.edu\/gold\/StudentGrades.aspx" ], "css": [ "sheet.css" ], "js": [ "main.js" ] } ] } |