Skyward Grade Calculator

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

Skyward Grade Calculator क्या है?

Skyward Grade Calculator alejolaverde0927 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer"।

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

screenshot
screenshot
screenshot

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

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

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

                        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.                    

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

नाम Skyward Grade Calculator Skyward Grade Calculator
ID gdggejmdplkjpcfkgechoapgbanaodil
आधिकारिक URL https://chromewebstore.google.com/detail/skyward-grade-calculator/gdggejmdplkjpcfkgechoapgbanaodil
विवरण Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer
फ़ाइल का आकार 13.42 KB
स्थापना संख्या 241
वर्तमान संस्करण 2.2
अंतिम अपडेट 2020-12-23
प्रकाशन तिथि 2020-12-22
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर alejolaverde0927
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
}