PowerSchool Grade Calculator

An extension that will automatically calculate your grades for powerschool and print them on the page next to your letter grade.

Τι είναι το PowerSchool Grade Calculator;

Το PowerSchool Grade Calculator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον kyleai, και η κύρια λειτουργία του είναι "An extension that will automatically calculate your grades for powerschool and print them on the page next to your letter grade.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης PowerSchool Grade Calculator

Λήψη αρχείων επέκτασης PowerSchool Grade Calculator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension will average out your grades on PowerSchool to give you an average if the school has turned it off. It also gets your GPA on the main page, past grades, and can get weighted grades. It should work for every school's site, if it doesn't, click "support", and contact me, and I'll try to figure it out. 

Please note: This app is made by me independent of Powerschool, and is in no way affiliated with Powerschool.

View source code, changelog, and privacy policy here: https://github.com/kyleai/getGrade

Made by Kyle                    

Βασικές Πληροφορίες Επέκτασης

Όνομα PowerSchool Grade Calculator PowerSchool Grade Calculator
ID omoffjbdckolacanfbappkfdaacmbjnd
Επίσημο URL https://chromewebstore.google.com/detail/powerschool-grade-calcula/omoffjbdckolacanfbappkfdaacmbjnd
Περιγραφή An extension that will automatically calculate your grades for powerschool and print them on the page next to your letter grade.
Μέγεθος Αρχείου 409 KB
Αριθμός Εγκαταστάσεων 11,098
Τρέχουσα Έκδοση 1.7.1
Τελευταία Ενημέρωση 2023-06-15
Ημερομηνία Δημοσίευσης 2017-02-01
Αξιολόγηση 3.50/5 Συνολικά 16 Αξιολογήσεις
Προγραμματιστής kyleai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PowerSchool Grade Calculator",
    "short_name": "Show Grade",
    "version": "1.7.1",
    "author": "Kyle Into",
    "description": "An extension that will automatically calculate your grades for powerschool and print them on the page next to your letter grade. ",
    "icons": {
        "128": "image.png"
    },
    "page_action": {
        "default_title": "Get PowerSchool Grades",
        "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",
                "getGrade.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",
                "getGPA.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "*powerschool.*",
                "*ps.*",
                "*termgrades*",
                "portal",
                "k12"
            ],
            "exclude_globs": [
                "*scores*",
                "*attendance*",
                "*requestform*",
                "*schoolinformation*",
                "*home*"
            ],
            "js": [
                "jquery-2.2.2.min.js",
                "getPastGPA.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "jquery-2.2.2.min.js",
        "getGPA.js",
        "getGrade.js"
    ],
    "options_page": "options.html",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    }
}