MadGPA

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

What is MadGPA?

MadGPA is a Chrome extension developed by Prath, and its main feature is "Automatically loads the previous semester's average GPA in course enroll.".

Extension Screenshots

screenshot
screenshot
screenshot

Download MadGPA Extension CRX File

Download MadGPA extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name MadGPA MadGPA
ID ngglfcpeciojeakbdenajcljcinejjpa
Official URL https://chromewebstore.google.com/detail/madgpa/ngglfcpeciojeakbdenajcljcinejjpa
Description Automatically loads the previous semester's average GPA in course enroll.
File Size 33.26 KB
Installation Count 285
Current Version 3.00
Last Updated 2023-02-03
Publish Date 2023-01-31
Rating 5.00/5 Total 7 Ratings
Developer Prath
Email [email protected]
Payment Type free
Extension Website https://pite.vercel.app/#projects
Supported Languages 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"
        }
    ]
}