GradeMyGold

Easily calculate your predicted GPA within GOLD.

ما هو GradeMyGold؟

GradeMyGold هو إضافة Chrome تم تطويرها بواسطة Casey Barbello، والميزة الرئيسية لها هي "Easily calculate your predicted GPA within GOLD.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة GradeMyGold

قم بتنزيل ملفات الامتداد GradeMyGold بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}