Infinite Campus Grade Predictor

Predict your future grades on Infinite Campus

Infinite Campus Grade Predictor란 무엇입니까?

Infinite Campus Grade Predictor은(는) Benjamin Man에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Predict your future grades on Infinite Campus"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Infinite Campus Grade Predictor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Take control of your grades. Stop using your calculator to add up every assignment in every category. ICGP instantly calculates your predictions. Whether its a final, an assignment in a new category, extra credit, or a change to an old grade, ICGP does it for you.

Open source: https://github.com/bm-tech/Infinite-Campus-Grade-Predictor                    

확장 프로그램 기본 정보

이름 Infinite Campus Grade Predictor Infinite Campus Grade Predictor
ID ggakloicnidnfjbdfeapcjdhoeikpmbc
공식 URL https://chromewebstore.google.com/detail/infinite-campus-grade-pre/ggakloicnidnfjbdfeapcjdhoeikpmbc
설명 Predict your future grades on Infinite Campus
파일 크기 781 KB
설치 횟수 1,000
현재 버전 1.1.0
최근 업데이트 2022-12-28
출시 날짜 2021-12-28
평점 5.00/5 총 9 개의 평점
개발자 Benjamin Man
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://bm-tech.github.io/Infinite-Campus-Grade-Predictor/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Infinite Campus Grade Predictor",
    "version": "1.1.0",
    "manifest_version": 3,
    "description": "Predict your future grades on Infinite Campus",
    "homepage_url": "https:\/\/github.com\/BM-Tech\/Infinite-Campus-Grade-Predictor",
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "48": "icons\/favicon-32x32.png",
        "128": "icons\/favicon-128.png"
    },
    "default_locale": "en",
    "background": {
        "service_worker": "src\/bg\/background.js"
    },
    "action": {
        "default_icon": "icons\/favicon-32x32.png",
        "default_title": "Infinite Campus Grade Predictor",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.infinitecampus.org\/campus\/resources\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.infinitecampus.org\/*"
            ],
            "js": [
                "src\/inject.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}