GradeMyGold

Easily calculate your predicted GPA within GOLD.

什麼是GradeMyGold?

GradeMyGold是由Casey Barbello開發的Chrome擴展程式,該擴展的主要功能是“Easily calculate your predicted GPA within GOLD.”。

擴展截圖

screenshot

下載GradeMyGold擴展crx文件

下載GradeMyGold擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}