Skyward Grade Calculator

Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer

Co je Skyward Grade Calculator?

Skyward Grade Calculator je rozšíření Chrome vyvinuté alejolaverde0927, a jeho hlavní funkcí je „Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Skyward Grade Calculator

Stáhněte si soubory rozšíření Skyward Grade Calculator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This is a hacked client extension for the Skyward grades viewer. It injects some utility functions into the user interface which allows for the client-side changing of grades, viewing of the grade's weight to your overall in the class, and even provides a grade minimum calculator built in.

This is to facilitate viewing of grades on skyward, and making some calculations to see what your overall grade would be if it was a different value, or for seeing how much you need to change a grade by in order for your overall to reach a certain goal.                    

Základní Informace o Rozšíření

Název Skyward Grade Calculator Skyward Grade Calculator
ID gdggejmdplkjpcfkgechoapgbanaodil
Oficiální URL https://chromewebstore.google.com/detail/skyward-grade-calculator/gdggejmdplkjpcfkgechoapgbanaodil
Popis Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer
Velikost souboru 13.42 KB
Počet instalací 241
Aktuální Verze 2.2
Poslední Aktualizace 2020-12-23
Datum Vydání 2020-12-22
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář alejolaverde0927
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skyward Grade Calculator",
    "version": "2.2",
    "description": "Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer",
    "externally_connectable": {
        "matches": [
            "https:\/\/skyward.iscorp.com\/*"
        ]
    },
    "page_action": {
        "default_icon": {
            "32": "images\/extension_toolbar_icon32.png"
        }
    },
    "icons": {
        "32": "images\/extension_icon32.png",
        "48": "images\/extension_icon48.png",
        "128": "images\/extension_icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/skyward.iscorp.com\/*"
            ],
            "js": [
                "globals.js",
                "classes.js",
                "core.js",
                "util_functions.js",
                "injection.js"
            ],
            "css": [
                "stylesheet.css"
            ]
        }
    ],
    "permissions": [
        "webNavigation",
        "https:\/\/skyward.iscorp.com\/*"
    ],
    "manifest_version": 2
}