GradeMyGold

Easily calculate your predicted GPA within GOLD.

GradeMyGold क्या है?

GradeMyGold Casey Barbello द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily calculate your predicted GPA within GOLD."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GradeMyGold एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}