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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Skyward Grade Calculator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
}