Skyward Grade Calculator
Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer
Apa itu Skyward Grade Calculator?
Skyward Grade Calculator adalah ekstensi Chrome yang dikembangkan oleh alejolaverde0927, dan fitur utamanya adalah "Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Skyward Grade Calculator
Unduh file ekstensi Skyward Grade Calculator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Skyward Grade Calculator |
ID | gdggejmdplkjpcfkgechoapgbanaodil |
URL Resmi | https://chromewebstore.google.com/detail/skyward-grade-calculator/gdggejmdplkjpcfkgechoapgbanaodil |
Deskripsi | Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer |
Ukuran File | 13.42 KB |
Jumlah Instalasi | 241 |
Versi Saat Ini | 2.2 |
Terakhir Diperbarui | 2020-12-23 |
Tanggal Publikasi | 2020-12-22 |
Penilaian | 3.00/5 Total 2 Penilaian |
Pengembang | alejolaverde0927 |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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 } |