MadGPA

Automatically loads the previous semester's average GPA in course enroll.

ما هو MadGPA؟

MadGPA هو إضافة Chrome تم تطويرها بواسطة Prath، والميزة الرئيسية لها هي "Automatically loads the previous semester's average GPA in course enroll.".

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

screenshot
screenshot
screenshot

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

قم بتنزيل ملفات الامتداد MadGPA بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Helps you select the best & easiest courses to enroll in at the University of Wisconsin - Madison. Have you ever tried to find the easiest course offering of a certain degree requirement? This extension solves that problem! By overlaying previous semesters average GPA in course enroll, this extension removes the pain of finding a course and then checking it against a grade distribution site.                    

معلومات أساسية عن التمديد

الاسم MadGPA MadGPA
ID ngglfcpeciojeakbdenajcljcinejjpa
عنوان URL الرسمي https://chromewebstore.google.com/detail/madgpa/ngglfcpeciojeakbdenajcljcinejjpa
الوصف Automatically loads the previous semester's average GPA in course enroll.
حجم الملف 33.26 KB
عدد التثبيتات 285
النسخة الحالية 3.00
آخر تحديث 2023-02-03
تاريخ النشر 2023-01-31
تقييم 5.00/5 مجموع تقييمات 7
المطور Prath
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://pite.vercel.app/#projects
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MadGPA",
    "description": "Automatically loads the previous semester's average GPA in course enroll.",
    "version": "3.00",
    "icons": {
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.enroll.wisc.edu\/*",
                "https:\/\/enroll.wisc.edu\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}