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 | 
| 电子邮箱 | [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
}  |  |