What-If GradeSpeed

Allows for hypothetical calculation of grades for assignments in HISD's gradespeed portal.

What-If GradeSpeedคืออะไร?

What-If GradeSpeed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Owen Hines และคุณลักษณะหลักของมันคือ "Allows for hypothetical calculation of grades for assignments in HISD's gradespeed portal."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย What-If GradeSpeed

ดาวน์โหลดไฟล์ส่วนขยาย What-If GradeSpeed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Allows for hypothetical calculation of grades for assignments in HISD's GradeSpeed portal. Open the normal GradeSpeed portal, then click the button in the top right corner saying "Open what-if grades". Once on the page, click on any of the class averages to view individual assignments as normal. Next to each grade spot, there should be a write button that allows you to change the grade and update the averages accordingly. This allows for you to preview what certain grades would do to your overall average. This takes grade weighting into account.

Version 0.1 - Initial Release
Version 0.2 - Fixed bug that broke overall average for classes with only one section
Version 0.3 - Added mouse cursor change on hover over buttons
Version 0.4 - Minified/Uglified JS
Version 0.5 - Added feature to allow for user to add new assignments to grade list
Version 0.6 - Behind the scenes refactoring of code
Version 0.7 - Fixed bug with "Exc" grade breaking calculations
Version 0.8 - Behind the scenes code refactoring to update to ES6 features.
Version 0.9 - More refactoring
Version 1.0 - Added delete feature and fixed some calculation bugs
Version 1.1 - Properly rounded final average instead of forcing it to round up
Version 1.2 - Added feature to add final exam grades to change semester averages
Version 1.3 - Fixed broken link trigger.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ What-If GradeSpeed What-If GradeSpeed
ID efmdcdlehpakgjdedjimhiojdjebenlj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/what-if-gradespeed/efmdcdlehpakgjdedjimhiojdjebenlj
คำอธิบาย Allows for hypothetical calculation of grades for assignments in HISD's gradespeed portal.
ขนาดไฟล์ 36.15 KB
จำนวนการติดตั้ง 86
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2018-09-12
วันที่เผยแพร่ 2018-09-11
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Owen Hines
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/TheOdd/what-if-grades
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "What-If GradeSpeed",
    "manifest_version": 2,
    "version": "1.3",
    "description": "Allows for hypothetical calculation of grades for assignments in HISD's gradespeed portal.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/parent.gradebook.houstonisd.org\/pc\/ParentStudentGrades.aspx*",
                "*:\/\/publicapps.houstonisd.org\/ParentStudentConnect\/GradeSpeed.aspx"
            ],
            "js": [
                "jquery.js",
                "whatif.js"
            ]
        }
    ]
}