GradeMyGold

Easily calculate your predicted GPA within GOLD.

GradeMyGold là gì?

GradeMyGold là một tiện ích mở rộng Chrome được phát triển bởi Casey Barbello, và tính năng chính của nó là "Easily calculate your predicted GPA within GOLD.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GradeMyGold

Tải xuống các tệp mở rộng GradeMyGold dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GradeMyGold GradeMyGold
ID jneakpjhcnajlhemfopfpacikagpolkn
URL Chính Thức https://chromewebstore.google.com/detail/grademygold/jneakpjhcnajlhemfopfpacikagpolkn
Mô tả Easily calculate your predicted GPA within GOLD.
Kích Thước Tệp 9.14 KB
Số Lần Cài Đặt 149
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2018-04-18
Ngày Phát Hành 2018-04-17
Đánh Giá 4.57/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Casey Barbello
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}