Myschoolapp GPA Calculator
Simple front-end GPA calculator for Myschoolapp
Myschoolapp GPA Calculatorคืออะไร?
Myschoolapp GPA Calculator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jack Crane และคุณลักษณะหลักของมันคือ "Simple front-end GPA calculator for Myschoolapp"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Myschoolapp GPA Calculator
ดาวน์โหลดไฟล์ส่วนขยาย Myschoolapp GPA Calculator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a simple client-side GPA Calculator that automatically plugs into the progress page of yourschool.myschoolapp.com. Your GPA will show in the Performance section. (The screenshot is slightly out of date, but it is a pain to get a new one that is the right size, so here we are) If you are so inclined to take this apart, feel free to do so!: https://github.com/jackcrane/gpacalc NOTE: THIS IS NOT THE OFFICIAL GPA! THIS SYSTEM DOES NOT TAKE INTO ACCOUNT HALF-CREDIT COURSES AND OTHER ABNORMALITIES, AS WELL AS EXAMS. This was just created for a rough estimate - Be sure to calculate your GPA based on your school's documentation for a more accurate reading NOTE: THIS IS ONLY FOR MYSCHOOLAPP! If your school uses Schoology or some other system, this is not for you. This has only been tested at ONE school, if you have any issues, be sure to let me know, I will be sure to get it resolved, I want this to be helpful and available to as many students as possible. Please report issues and feature requests to [email protected] Current feature requests and issues: [FEATURE REQUEST] - automatically hide courses without grades/study halls to clean up viewport Changelog: [v1.4.0] Updated average algorithm to deal with the new method of the portal displaying grades as percentages with decimals. [v1.5.0] Added a settings page! Users can now change their color scheme [v1.5.2] Added 2 buttons in the modal -- go to the class page and view the grade detail. Links and pages are dynamically selected [v1.5.3] Added feature that adds grades to their respective bulletin boards [v1.5.4] Bug Fixes [v1.5.5] Bug Fixes [v1.5.6] Bug Fixes and further advertising the more details modal Please submit issues: https://github.com/jackcrane/gpacalc/issues
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Myschoolapp GPA Calculator |
ID | jfbodkjgjenlagkjepebmpnhekihgplo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/myschoolapp-gpa-calculato/jfbodkjgjenlagkjepebmpnhekihgplo |
คำอธิบาย | Simple front-end GPA calculator for Myschoolapp |
ขนาดไฟล์ | 376 KB |
จำนวนการติดตั้ง | 1,941 |
เวอร์ชันปัจจุบัน | 1.5.6 |
อัปเดตครั้งล่าสุด | 2020-10-14 |
วันที่เผยแพร่ | 2020-02-13 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Jack Crane |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/jackcrane/gpacalc |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Myschoolapp GPA Calculator", "version": "1.5.6", "description": "Simple front-end GPA calculator for Myschoolapp", "icons": { "16": "favicon.png", "48": "favicon.png", "128": "favicon.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/*.myschoolapp.com\/*" ], "js": [ "script.js" ] } ], "permissions": [ "https:\/\/*.myschoolapp.com\/*", "storage" ], "externally_connectable": { "matches": [ "https:\/\/*.myschoolapp.com\/*" ] } } |