MadGPA

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

什么是MadGPA?

MadGPA是由Prath开发的Chrome扩展程序,该扩展的主要功能是“Automatically loads the previous semester's average GPA in course enroll.”。

扩展截图

screenshot
screenshot
screenshot

下载MadGPA扩展crx文件

下载MadGPA扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}