Skyward Grade Calculator
Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer
Τι είναι το Skyward Grade Calculator;
Το Skyward Grade Calculator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alejolaverde0927, και η κύρια λειτουργία του είναι "Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Skyward Grade Calculator
Λήψη αρχείων επέκτασης Skyward Grade Calculator σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 |
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 } |