GradeMyGold

Easily calculate your predicted GPA within GOLD.

GradeMyGold란 무엇입니까?

GradeMyGold은(는) Casey Barbello에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily calculate your predicted GPA within GOLD."입니다.

확장 프로그램 스크린샷

screenshot

GradeMyGold 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        GradeMyGold makes predicting your future GPA easy by adding a GPA calculator to UCSB's GOLD website. Simply go to the "Grades" tab on GOLD and select "All Quarters." A calculator will appear at the bottom of the page next to your current quarter. 

GradeMyGold correctly calculates your GPA, even if you are retaking a course. If you would like to omit a course grade, set its corresponding drop down to "P/NP" and it will be excluded from the calculation.

All calculations are performed locally on your machine. Your data is not altered and nothing is reported to me.                    

확장 프로그램 기본 정보

이름 GradeMyGold GradeMyGold
ID jneakpjhcnajlhemfopfpacikagpolkn
공식 URL https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn
설명 Easily calculate your predicted GPA within GOLD.
파일 크기 9.14 KB
설치 횟수 149
현재 버전 1.6
최근 업데이트 2018-04-18
출시 날짜 2018-04-17
평점 4.57/5 총 7 개의 평점
개발자 Casey Barbello
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GradeMyGold",
    "version": "1.6",
    "author": "Casey Barbello",
    "description": "Easily calculate your predicted GPA within GOLD.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "page_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.sa.ucsb.edu\/gold\/StudentGrades.aspx"
            ],
            "css": [
                "sheet.css"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}