Skyward Grade Calculator
Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer
Skyward Grade Calculator là gì?
Skyward Grade Calculator là một tiện ích mở rộng Chrome được phát triển bởi alejolaverde0927, và tính năng chính của nó là "Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Skyward Grade Calculator
Tải xuống các tệp mở rộng Skyward Grade Calculator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Skyward Grade Calculator |
ID | gdggejmdplkjpcfkgechoapgbanaodil |
URL Chính Thức | https://chromewebstore.google.com/detail/skyward-grade-calculator/gdggejmdplkjpcfkgechoapgbanaodil |
Mô tả | Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer |
Kích Thước Tệp | 13.42 KB |
Số Lần Cài Đặt | 241 |
Phiên Bản Hiện Tại | 2.2 |
Cập Nhật Lần Cuối | 2020-12-23 |
Ngày Phát Hành | 2020-12-22 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | alejolaverde0927 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |