PowerSchool GPA Calculator

Automatic GPA Calculator for PowerSchool, still in development as of 11/11/23!

PowerSchool GPA Calculator क्या है?

PowerSchool GPA Calculator grahamzemel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatic GPA Calculator for PowerSchool, still in development as of 11/11/23!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PowerSchool GPA Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A tool to help students navigate their grades more efficiently, containing GPA information seamlessly incorporated into the PowerSchool web app.

V1.3.0: Bug Fixes
- Fixed mathematical function issues that caused the GPA to display roughly 0.05 points higher (on a 4.0 scale) than reflected on official documents.

---

Coming Soon: 
- Cookies! Currently enabled only for sorting, soon to be enabled for AP and Honors level toggles!

Known Issues: 
- None! Please contact me via grahamzemel.com/contact with feedback/suggestions if you come across an issue.

Created by Graham Zemel SHS '24

---

Past Versions: 
V1.2.0: New features! 
- Added secondary sorting based on if the class is in progress.
- Added official weighted and unweighted GPAs updated each quarter by SHS in the top right. 
- Updated mathematics functions.
- Bug fixes.

V1.1.0: New features!
- Added header to display overall GPAs (both weighted and unweighted) at the top of the page.
- Added AP and Honors weighing to all classes with individual checkboxes.
- Updated mathematics functions.

V1.0.0 Product Release
- Created a GPA Calculator extension to calculate student GPAs.                    

एक्सटेंशन की मूल जानकारी

नाम PowerSchool GPA Calculator PowerSchool GPA Calculator
ID dgfnbmfhjioifionnlcklnpfkkjjglbj
आधिकारिक URL https://chromewebstore.google.com/detail/powerschool-gpa-calculato/dgfnbmfhjioifionnlcklnpfkkjjglbj
विवरण Automatic GPA Calculator for PowerSchool, still in development as of 11/11/23!
फ़ाइल का आकार 43.27 KB
स्थापना संख्या 2,524
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2023-11-12
प्रकाशन तिथि 2022-12-14
रेटिंग 4.33/5 कुल 6 रेटिंग्स
डेवलपर grahamzemel
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://grahamzemel.com/projects/powerschool-gpa-calculator
सहायता पृष्ठ URL https://grahamzemel.com/contact
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PowerSchool GPA Calculator",
    "short_name": "GPA Calculator",
    "version": "1.3.0",
    "author": "Graham Zemel",
    "description": "Automatic GPA Calculator for PowerSchool, still in development as of 11\/11\/23!",
    "icons": {
        "128": "image.png"
    },
    "action": {
        "default_title": "Get PowerSchool Grades & GPA",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "*powerschool.*",
                "*ps.*",
                "*scores.html*",
                "portal",
                "k12"
            ],
            "exclude_globs": [
                "*home*",
                "*attendance*",
                "*requestform*",
                "*schoolinformation*",
                "*termgrades*"
            ],
            "js": [
                "jquery-2.2.2.min.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "*powerschool.*",
                "*ps.*",
                "*home.html*",
                "portal",
                "k12"
            ],
            "exclude_globs": [
                "*scores*",
                "*attendance*",
                "*requestform*",
                "*schoolinformation*",
                "*termgrades*"
            ],
            "js": [
                "jquery-2.2.2.min.js",
                "GPACalc.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "jquery-2.2.2.min.js",
                "GPACalc.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "extension_ids": [
                "*"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html"
    }
}