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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}