Skyward Grade Calculator

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

O que é Skyward Grade Calculator?

Skyward Grade Calculator é uma extensão do Chrome desenvolvida por alejolaverde0927, e sua principal característica é "Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Skyward Grade Calculator

Baixe arquivos de extensão Skyward Grade Calculator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Skyward Grade Calculator Skyward Grade Calculator
ID gdggejmdplkjpcfkgechoapgbanaodil
URL Oficial https://chromewebstore.google.com/detail/skyward-grade-calculator/gdggejmdplkjpcfkgechoapgbanaodil
Descrição Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer
Tamanho do Arquivo 13.42 KB
Contagem de Instalações 241
Versão Atual 2.2
Última Atualização 2020-12-23
Data de Publicação 2020-12-22
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor alejolaverde0927
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}