Skyward Grade Calculator
Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer
Skyward Grade Calculatorとは何ですか?
Skyward Grade Calculatorはalejolaverde0927によって開発されたChromeの拡張機能で、その主な機能は「Extension for automatically injecting the Grade Calculation hack into the Skyward grade viewer」です。
拡張機能のスクリーンショット
Skyward Grade Calculator拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
} | |